Forum

EA with the VPS,,Why will display a "trade operations not allowed by Settings "

EA on the local computer can trade, I use the VPS after the club's official website, but can't deal, display an error " trade operations not allowed by Settings", and why

Why buy the official website after the VPS, and does not change fast?

I'm in high-frequency trading, because their VPS are more than 200, so he from the official website to buy a month VPS. Thought order speed will be faster, as a result, your order did not change fast. Discovered, after today, I replay the same platform, the same EA, the same signal, the official

Why drag EA to the main picture above, the EA will automatically under a single first?

void OnTick () { static double prevbid= 0 ; double curbid= NormalizeDouble ( Bid , 5 ); double TD= DoubleToStr (curbid/ Point -prevbid/ Point ); if ((TD)>= 50 * Point ) if ( kaidan== 0 ) { { bool a= OrderSend ( Symbol (), OP_BUY , 0.01 , Ask , 10 , Ask -

Excuse me, how do we trade in the time stipulated every day?

I want to make the daily transaction time: 02:00-23:30, close all orders before 23:30 every day. How should I write? void OnTick () { if ( 02 : 00 < OrderOpenTime && OrderOpenTime < 23 : 30 ) { OrderSend ( Symbol (), OP_BUY , 1 , Ask , 10 , Ask - 100 * Point , Ask + 500 * Point

How to change the indicator to EA

I want to change the indicator to EA model, and then print it out in the EA, how to change? //+------------------------------------------------------------------+ //| 7.mq4 | //| Copyright 2018, MetaQuotes Software

Excuse me:How to calculate the volume of the last two on the Tick?

void OnTick() { prevolume=curvolume; curvolume = SymbolInfoDouble(_Symbol,SYMBOL_SESSION_VOLUME); Print(curvolume-prevolume); ) I use the above method, print out is zero, the result of the method error? How to calculate the difference of two Tick volume

How to calculate the time of the last two TICK (ms) and the price?

How to calculate the time of the last two TICK (ms) and the price