SA
Information
Username: | SaifBD |
Member since: | 05 Jan 2014 |
Last login: | 05 Jan 2014 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 1 | 3 |
Forum Topics | 5 | 0 |
Jobs | 0 | 0 |
Last Algorithm Comments
SA
@zilva try this.
[Parameter("Max Volume", DefaultValue = 10000000, Step = 1000)]
public int MaxVolume { get; set; }
if (ic_8 > MaxVolume)
ic_8 = MaxVolume;
SA
@spike.bhv
I added that in my cBot. see
long dc_i = Symbol.VolumeMax;
if (ic_8 > dc_i)
ic_8 = dc_i;
@9469cd97
It's not normal. cBot will not open sell position if "Sell" is false. never!