Information

Username: chris.wandel00
Member since: 06 Sep 2017
Last login: 06 Sep 2017
Status: Active

Activity

Where Created Comments
Algorithms 0 1
Forum Topics 3 3
Jobs 1 1

Last Algorithm Comments

CH
chris.wandel00 · 6 years ago

The stoploss still does not work!

Last Jobs Comments

CH
chris.wandel00 · 6 years ago

I The execute order code should look like this (in place of above)

 

 protected override void OnTick()
        {
            if (rsi.Result.LastValue < 30)
            {
                Open(TradeType.Sell);
            }
            else if (rsi.Result.LastValue > 70)
            {
                Open(TradeType.Buy);