help
Created at 20 Jul 2020, 19:45
LU
help
20 Jul 2020, 19:45
hi I need to print "ok"
print ("ok");
when the price is 60 pips above the current price
thanks
Replies
... Deleted by UFO ...
firemyst
15 Aug 2020, 17:05
RE:
luca.tocchi said:
Get Symbol.Bid or Symbol.Ask price (whichever one you want to measure from) and then add 60 pips:
Symbol.Bid + (60 * Symbol.PipSize)
Symbol.Ask + (60 * Symbol.Pipsize)
@firemyst