Errors, bugs, questions - page 2401

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
Use this function
Then, simply add (subtract) whatPointsToPrice() returned to the price.
Added
If it doesn't work correctly, then by this symbol
is translatingSYMBOL_TRADE_TICK_SIZE
Pardon, but I don't understand what long points should be input, especially considering that this parameter can be either positive or negative.
Okay, but I didn't understand what the long points were for input, especially since this parameter can be either positive or negative.
I just pulled the code from my EA
long points is how many points you want to increase (decrease) the price
I just pulled the code from my EA
long points - how many points do you want to increase (decrease) the price
To buy on ask - ceil, to sell on bid - floor? I want to open on the market.
So it's the server's crooked hands, which the Tester can't straighten right now. At the same time, everything will open in Terminal, as TickSize is not accounted for there.
Is there a workaround for the tester now? Specify ticksize in bot input parameters?
For bid-ask purchases - ceil, for bid-ask sales - floor? I want to open on the market.
For market, just send the order without the price.
Request.action = TRADE_ACTION_DEAL;
And consequently Buy or Sell.
request.type = ORDER_TYPE_BUY;
request.type = ORDER_TYPE_SELL;
By market, simply send an order without price.
request.action = TRADE_ACTION_DEAL;
And respectively Buy or Sell
request.type = ORDER_TYPE_BUY;
request.type = ORDER_TYPE_SELL;
In this bot, it works through MT4Orders.
I have now tried zero in price. The library sends the correct types of course. The error remains the same.
In this bot - through MT4Orders goes to work.
I have now tried zero in price. The library sends the correct types of course. The error remains the same.
Well, then to you to fxsaber.
Did you try to open the market using your hands?
Tried it myself
The server is not working properly.
In this bot - through MT4Orders goes to work.
I have now tried zero in price. The library sends the correct types of course. The error remains the same.
MT4Orders has no effect on trade request settings. What the user has written, that's what is sent. It's the same as with MT5-OrderSend.
Does MT4Orders work with history?
Does MT4Orders work with history?
Yes.