good morning bro
please can you share version VR Smart Grid 20_110.mq4
please can you share version VR Smart Grid 20_110.mq4
Smart Grid EA 259 replies
Grid - New indicator that replaces chart grid 60 replies
Grid, Burst Grid, Grid Risk and Grid Profit 1 reply
Anyone Trade With Lite forex or Other Bitcoin Forex Brokers? 7 replies
Disliked{image} Work logic If the last candle was bullish, the EA will enter the market with a buy order. If the last candle is bearish, then the EA will enter the market with a sell order. In this case, the signal acts not only on the first order in the network, but also on all subsequent ones. This approach eliminates the opening of the network only after a specified distance. It turns out that the EA takes into account not only the distance set by the trader, but also the signal from the candles. In the case of a sharp price movement without a signal...Ignored
if(bb >= 2)
if(AwerageBuyPrice > 0 && Bid >= AwerageBuyPrice)
{
if(!OrderClose(BuyPriceMaxTic, Lots,Bid, Slippage, clrRed))
Print("OrderClose Error ", GetLastError());
if(!OrderClose(BuyPriceMinTic, BuyPriceMinLot,Bid, Slippage, clrRed))
Print("OrderClose Error ", GetLastError());
}
if(ss >= 2)
if(AwerageSelPrice > 0 && Ask <= AwerageSelPrice)
{
if(!OrderClose(SelPriceMinTic, Lots,Ask, Slippage, clrRed))
Print("OrderClose Error ", GetLastError());
if(!OrderClose(SelPriceMaxTic, SelPriceMaxLot,Bid, Slippage, clrRed))
Print("OrderClose Error ", GetLastError());
} Disliked{quote} Hello friend I inspire your some codes This partial close codes are closing orders with loss How can correct this SelPriceMinTic mean oldest grid order with initial lot and SelPriceMaxTic mean newest grid order with multiply lots But why Awerage price calculation cannot set in profit place. if(bb >= 2) if(AwerageBuyPrice > 0 && Bid >= AwerageBuyPrice) { if(!OrderClose(BuyPriceMaxTic, Lots,Bid, Slippage, clrRed)) Print("OrderClose Error ", GetLastError()); if(!OrderClose(BuyPriceMinTic, BuyPriceMinLot,Bid, Slippage, clrRed)) Print("OrderClose...Ignored
DislikedAprendí que ningún EA es útil, si es Marti o Grid, el algoritmo de mercado y el creador de mercado te harán perder, por lo que es mejor hacer trading manual.Ignored
Disliked{quote} I came to the same conclusion a few years ago. Some EA with SL TP works but these are not in the forums, what is on the forums and telegram groups will sooner or later give you a scare. As a PROGRAMMER friend of mine said, it gives you false expectations and then ruins you.Ignored
DislikedПриятели, моля, напишете вашите въпроси и предложения тук. Много добри съобщения идват на лични...Ignored
Disliked{quote} Hello, very good idea for a universal code but practically this also means one platform. I think this will not be allowed because it destroys the marketing of brokers by offering 2 platforms and above all the polarization of traders' knowledge, an opportunity and a field for arguing which is better and other such nonsense. In addition, this will have a profound secondary effect in the direction of erasing a lot of work and achievements made in one way in the field of language, indicators, experts and everything done so far will become incompatible....Ignored
DislikedThanks for the offer. My work is related, as I said, to the use of a TDI-based robot. I use it only for the main entry and it continues manually because it does not have what I do for a better exit. What I do is elementary but successful so far. The additional things that I would like this robot to have are two and if they could be added as functions in the input parameters it would be wonderful. 1. Supporting operation = true / false. When turned on = true after the main entry, the robot makes supporting operations in the direction of the entry...Ignored