Gets the name of the file from which this trading strategy was loaded
SYNTAX
public string GetFileName ()
RETURN
string Returns the name of the file from which this trading strategy was loaded
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace TradingStrategyExamples { public class TradingStrategyExamples : NETStrategy { public override void OnQuote() { TradingStrategy[] trs; trs = TradingStrategy.GetTradingStrategies(); Print(trs[0].GetFileName()); Print(trs[0].GetIndicators()); Print(trs[0]); Print(trs[0].Start()); Print(trs[0].Stop()); //property Print(trs[0].Hotkey); Print(trs[0].Name); Print(trs[0].Script); Print(trs[0].Started); } } }