gooly:
Is this for a Buy, Sell or both ? let this guide you, it's all here: Requirements and Limitations in Making Trades
Hi,
please if s.o. can confirm or tell me a mistake or if s.th. is missing except the the code to admin. the targets before and after this:
I want to catch if the new target for a buy-position is too close to the actual price:
Is that enough or have I forgotten s.th.?
RaptorUK:
Is this for a Buy, Sell or both ? let this guide you, it's all here: Requirements and Limitations in Making Trades
Is this for a Buy, Sell or both ? let this guide you, it's all here: Requirements and Limitations in Making Trades
it's a buy position: pointDifference = (qtsTarget - Bid)/Point
gooly:
it's a buy position: pointDifference = (qtsTarget - Bid)/Point
it's a buy position: pointDifference = (qtsTarget - Bid)/Point
Shouldn't this . . .
MathMax( MarketInfo(Symbol(),MODE_FREEZELEVEL), MarketInfo(Symbol(),MODE_STOPLEVEL) )
be this ?
MathMin( MarketInfo(Symbol(),MODE_FREEZELEVEL), MarketInfo(Symbol(),MODE_STOPLEVEL) )
You should give some thought about how you are comparing these double values, what will happen of they are equal as a price but not equal as doubles ?
If freezelevel isn't being used its value is zero. If you're closer than either (less than max) you can't modify the trade.
yep - that was my intention,
thanks WHRoeder!

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
please if s.o. can confirm or tell me a mistake or if s.th. is missing except the the code to admin. the targets before and after this:
I want to catch if the new target for a buy-position is too close to the actual price:
Is that enough or have I forgotten s.th.?
Thanks in advance,
gooly