Topics
Replies
brianchan661
21 Mar 2017, 03:24
Dear team,
Is it still not avaiable for backtesting yet?
Thanks
@brianchan661
brianchan661
21 Mar 2017, 03:24
Dear team,
Is multi symbol still not avaiable for back testing yet?
Thanks
@brianchan661
brianchan661
11 Sep 2016, 09:06
Hi,
same question with ctid225562's comment,
are your team going to implement it?
Thanks
@brianchan661
brianchan661
16 Jul 2016, 14:33
RE:
lucian said:
public class SchaffTrendCycle : Indicator { [Parameter("MA Short", DefaultValue = 23, MinValue = 1)] public int MAShort { get; set; } [Parameter("MA Long", DefaultValue = 50, MinValue = 1)] public int MALong { get; set; } [Parameter("Cycle", DefaultValue = 10, MinValue = 1)] public int Cycle { get; set; } [Output("Schaff Trend Cycle", Color = Colors.DarkOrchid, Thickness = 2)] public IndicatorDataSeries ST2 { get; set; } ................ ................. }
protected override void OnStart() { stcIndicator = Indicators.GetIndicator<SchaffTrendCycle>(23, 50, 10); } protected override void OnBar() { Print(stcIndicator.ST2[0]); }
I tried to create the instance but seem fail, they are not printing the result but "non number"
@brianchan661
brianchan661
24 May 2018, 08:12
RE:
Panagiotis Charalampous said:
Thanks for reply
so I think the DrawVerticalLine is not able to drice between two prices right?
say, just between the low of the candle and the MA
@brianchan661