Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
saya bingung dengan TP nya bos
kalau buy di ma20 sedangkan ma50 di bawah ma20 , bukannya jadi stop loss yha
string SignalClose;
int ticket;
if(Close[i]<=MA50) {SignalClose = "CloseBUY";}
//Cari Order BUY
if (OrdersTotal() <= 0)
return;
for (int x=OrdersTotal()-1; x>=0; x--)
{...
if you just want print the shift and value1 break is not necessary, but if you want make an EA i think it useful to stop looping after box already find
how about on 40 candle had 2 buy yellow box, it will print the last box position shift and value1 , thats why i put break in the code...
please look at the icustom format
+++AgimatFX2018pro_ConA have have 16 parameter , you need to write all parameter after "+++AgimatFX2018pro_ConA","false","false"....etc );
if you use default parameter just write "+++AgimatFX2018pro_ConA",0,shift);
and you need find the buffer first
for...
its open trade based on iHigh and iLow on TF H1 after x candle after tokyo open
mix with ADR calculation then open buystop sellstop on those high and low
int shift=10; //jumlah candle yang mau dihitung
int SignalBuy=0;
int SignalSell=0;
for(int i=shift; i>=0; i--)
{
if(iSAR (NULL,PERIOD_CURRENT,0.02,0.2,i)>High[i])
SignalSell++; //Hitung Jumlah Psar Sell
if(iSAR (NULL,PERIOD_CURRENT,0.02,0.2,i)<Low[i])
SignalBuy++...
kapitbahay is rename indicator ... its an old indicator
the true indicator name is Solar Winds joy
there is debate on mql5 forum about the repainting issue for about ten years a go
it looking good
i'll try to understanding the concept
btw , which the last template to use .. there is 5 template
i think its easy to convert it to ea
just need to determine the rule for buy and sell
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.