After setting support and resistance levels as user defined multiple variables R1, R2, R3, R4... and S1, S2, S3, S4...
private double r1 = 1;
private double r2 = 1;
private double r3 = 1;
private double r4 = 1;
private double s1 = 1;
private double s2 = 1;
private double s3 = 1;
private double s4 = 1;
For instance, when market price hit S1
EnterLongLimit(DefaultQuantity, S1, "long1");
and EnterShortLimit()
The Question is:
How do I put in EnterShortLimit() order on the next level minus 1 tick (above the entry level, in this case it is R1 - 1 tick)?

Comment