• 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 :)

Recent content by Noir_

  1. N

    Cara membandingan 3 garis MA

    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--) {...
  2. N

    Cara membandingan 3 garis MA

    string Signal; if (MA20>MA50 && MA50>MA100 && Close[i]>=MA20) {Signal = "BUY";} else { if((MA20<MA50 && MA50<MA100 && Close[i]<=MA20) {Signal = "SELL";} else { Signal = "NONE";}} if(Signal == "BUY") //code buy di sini; if(Signal == "SELL") //code sell di sini;
  3. N

    Question about how to use an indicator

    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...
  4. N

    Question about how to use an indicator

    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...
  5. N

    Suggestion Erxgen EA

    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
  6. N

    Suggestion Erxgen EA

    yes.. i mean its work like erxgen filter indicator
  7. N

    Tutorial (ASK) Bagaimana membuat fungsi jumlah signal ?

    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++...
  8. N

    Suggestion Erxgen EA

    i think it use ERXGen Filter indicator for signal i just studying it do u have ERXGen EA pdf ??
  9. N

    Suggestion I will make a Free EA with your Indicator

    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
  10. N

    Suggestion ProfipipsHunter AI 2020 (Profitable FREE EA for everyone)

    start testing on demo acc hope it have good result
  11. N

    Suggestion good system? try for yourself

    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
  12. N

    Suggestion Perkenalkan Diri Agan Disini

    hallow selamat siang soehoe
Back
Top