コード例 #1
0
 /// <summary>Debugging, output current state</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new Range(-100, 1));
     Debugging.Dump("channel.ldr", ldr =>
     {
         if (Channel == null)
         {
             return;
         }
         var ch = Channel.Value;
         ldr.Rect("channel", 0xFF0000FF, AxisId.PosZ, ch.Idx.Sizef, ch.Price.Sizef, false,
                  new v4(ch.Idx.Midf, ch.Price.Midf, 0f, 1f));
     });
 }
コード例 #2
0
 /// <summary>Debugging output</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new Range(-100, 1), mas: new[] { MA0, MA1 }, high_res: 20.0);
     Debugging.Dump(PriceDistribution, +5, prob: new[] { 0.1, 0.5, 0.9 });
 }
コード例 #3
0
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new Range(-100, 1), indicators: new[] { MA0, MA1 });
 }
コード例 #4
0
 /// <summary>Debugging output</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, indicators: new[] { Donchian });
 }
コード例 #5
0
 /// <summary>Debugging output</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new Range(-100, 1));
     Debugging.Dump(MACD, range: new Range(-100, 1));
 }
コード例 #6
0
 /// <summary>Debugging output</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument);
 }
コード例 #7
0
 /// <summary>Debugging output</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new Range(-100, 1), high_res: 20.0);
 }
コード例 #8
0
ファイル: Rylobot_MA.cs プロジェクト: psryland/rylogic_code
 /// <summary>Debugging output</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, indicators: new[] { MA0, MA1, MA2 });
 }
コード例 #9
0
ファイル: StrategySnR.cs プロジェクト: psryland/rylogic_code
 /// <summary>Debugging, output current state</summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new Range(-100, 1));
     Debugging.Dump(new SnR(Instrument, tf: TimeFrame.Hour8));
 }
コード例 #10
0
 /// <summary></summary>
 public override void Dump()
 {
     Debugging.CurrentPrice(Instrument);
     Debugging.Dump(Instrument, range: new RangeF(-100, 1), mas: new[] { EMA0, EMA1 });
 }