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

Suggestion Lumbung_Dollar

This is my review for this thread:
indinya keren, sangat membantu analisa multi TF.
systemnya simple, tapi ada sesuatu dibalik yang simple itu hehe
jadi teringat kata2 salah satu master: "ikuti yang kecil, perhatikan yang besar"
Thanks ki supo ...gak sabar nunggu EA nya
selamat bergabung dan selamat berlatih semoga sukses selalu
pamit mo kelokasi tambang dulu​
 
Pak Ki. Bisa tolong di jelaskan OP yang aggresive seperti kalimat P. Ki:

"jika manual mau aggresive menggunakan High_Low box 4 jam sebagai range nya untuk trading 4 jam kemudian dengan memperhatikan close candle 1 jam dan panjang pendeknya candle 5 menit".

Ini gimana yah cara OP nya. Kalau yang Conservative nunggu H4 H1 dan M5 sudah ngerti sekarang. Tapi yah kudu sabar yah, buka banyak pair sekalian biar banyak kesempatan.
 
Code:
//+------------------------------------------------------------------+
//|                                                       Candle.mq4 |
//|                        Copyright 2015, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2015, MetaQuotes Software Corp."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict
input int TakeProfit=30;
input int StopLoss=30;
input double Lot =0.01;
input int Magic=12345;
double H4;
double H1;
double M5;
int tipe;
int open;
double Price;
double TP,SL;
int point;
datetime LastOpen;
int ticket;
double Lots;
int total;
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---
   if(!GlobalVariableCheck("LastOpen"))GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
  
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
//---
   if(!GlobalVariableCheck("LastOpen"))GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
   if(MarketInfo(Symbol(),MODE_DIGITS)==3 ||MarketInfo(Symbol(),MODE_DIGITS)==5)point=10;
   else point=1;
   LastOpen=(datetime)GlobalVariableGet("LastOpen_"+Symbol());
   Lots=Lot;
   H4=iClose(Symbol(),PERIOD_H4,1);
   H1=iClose(Symbol(),PERIOD_H1,1);
   M5=iClose(Symbol(),PERIOD_M5,0);
  
// SYARAT OP  
//close candle 1 jam diatas close candle 4jam dan candle 5menit diatas close candle 1 jam dan diatas close candle 4 jam  
   if(H1 > H4 && M5 > H1 && M5 > H4)open=1;
//close candle 1 jam dibawah close candle 4jam dan candle 5menit dibawah close candle 1 jam dan dibawah close candle 4 jam
   if(H1 < H4 && M5 < H1 && M5 < H4)open=2;
//-------------------------------------------------------------------------------------------------------------------------- 
   total=0;
for(int i=0;i<OrdersTotal();i++)
     {
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if(OrderSymbol()==Symbol())total++;
}

if(open==1){
tipe=0;
Price=MarketInfo(Symbol(),MODE_ASK);
TP=Price+(TakeProfit*point*Point);
SL=Price-(StopLoss*point*Point);
}
if(open==2){
tipe=1;
Price=MarketInfo(Symbol(),MODE_BID);
TP=Price-(TakeProfit*point*Point);
SL=Price+(StopLoss*point*Point);
}
if(total==0 && open !=0 && TimeCurrent() > LastOpen + 3600 ){
ticket=OrderSend(Symbol(),tipe,Lot,Price,100,SL,TP,"Candle_"+Symbol(),Magic,clrGreen);
      if(ticket>0)GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
       if(ticket<0)
     {
      Alert("OrderSend failed with error #",GetLastError());
     }
   else
      Alert("OrderSend placed successfully");
      }
  }
//+------------------------------------------------------------------+
OPBuy= close candle 1 jam diatas close candle 4jam dan candle 5menit diatas close candle 1 jam dan diatas close candle 4 jam
OPSell= close candle 1 jam dibawah close candle 4jam dan candle 5menit dibawah close candle 1 jam dan dibawah close candle 4 jam

Sudah bener belum ki supo
 
Code:
//+------------------------------------------------------------------+
//|                                                       Candle.mq4 |
//|                        Copyright 2015, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2015, MetaQuotes Software Corp."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict
input int TakeProfit=30;
input int StopLoss=30;
input double Lot =0.01;
input int Magic=12345;
double H4;
double H1;
double M5;
int tipe;
int open;
double Price;
double TP,SL;
int point;
datetime LastOpen;
int ticket;
double Lots;
int total;
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---
   if(!GlobalVariableCheck("LastOpen"))GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
 
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
//---
   if(!GlobalVariableCheck("LastOpen"))GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
   if(MarketInfo(Symbol(),MODE_DIGITS)==3 ||MarketInfo(Symbol(),MODE_DIGITS)==5)point=10;
   else point=1;
   LastOpen=(datetime)GlobalVariableGet("LastOpen_"+Symbol());
   Lots=Lot;
   H4=iClose(Symbol(),PERIOD_H4,1);
   H1=iClose(Symbol(),PERIOD_H1,1);
   M5=iClose(Symbol(),PERIOD_M5,0);
 
// SYARAT OP 
//close candle 1 jam diatas close candle 4jam dan candle 5menit diatas close candle 1 jam dan diatas close candle 4 jam 
   if(H1 > H4 && M5 > H1 && M5 > H4)open=1;
//close candle 1 jam dibawah close candle 4jam dan candle 5menit dibawah close candle 1 jam dan dibawah close candle 4 jam
   if(H1 < H4 && M5 < H1 && M5 < H4)open=2;
//--------------------------------------------------------------------------------------------------------------------------
   total=0;
for(int i=0;i<OrdersTotal();i++)
     {
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if(OrderSymbol()==Symbol())total++;
}

if(open==1){
tipe=0;
Price=MarketInfo(Symbol(),MODE_ASK);
TP=Price+(TakeProfit*point*Point);
SL=Price-(StopLoss*point*Point);
}
if(open==2){
tipe=1;
Price=MarketInfo(Symbol(),MODE_BID);
TP=Price-(TakeProfit*point*Point);
SL=Price+(StopLoss*point*Point);
}
if(total==0 && open !=0 && TimeCurrent() > LastOpen + 3600 ){
ticket=OrderSend(Symbol(),tipe,Lot,Price,100,SL,TP,"Candle_"+Symbol(),Magic,clrGreen);
      if(ticket>0)GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
       if(ticket<0)
     {
      Alert("OrderSend failed with error #",GetLastError());
     }
   else
      Alert("OrderSend placed successfully");
      }
  }
//+------------------------------------------------------------------+


Sudah bener belum ki supo
icustom indinya blm masuk ya gan?
 
View attachment 11333
Code:
//+------------------------------------------------------------------+[/CENTER]
//|                                                       Candle.mq4 |
//|                        Copyright 2015, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2015, MetaQuotes Software Corp."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict
input int TakeProfit=30;
input int StopLoss=30;
input double Lot =0.01;
input int Magic=12345;
double H4;
double H1;
double M5;
int tipe;
int open;
double Price;
double TP,SL;
int point;
datetime LastOpen;
int ticket;
double Lots;
int total;
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---
   if(!GlobalVariableCheck("LastOpen"))GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());

//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
//---
   if(!GlobalVariableCheck("LastOpen"))GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
   if(MarketInfo(Symbol(),MODE_DIGITS)==3 ||MarketInfo(Symbol(),MODE_DIGITS)==5)point=10;
   else point=1;
   LastOpen=(datetime)GlobalVariableGet("LastOpen_"+Symbol());
   Lots=Lot;
   H4=iClose(Symbol(),PERIOD_H4,1);
   H1=iClose(Symbol(),PERIOD_H1,1);
   M5=iClose(Symbol(),PERIOD_M5,0);

// SYARAT OP
//close candle 1 jam diatas close candle 4jam dan candle 5menit diatas close candle 1 jam dan diatas close candle 4 jam
   if(H1 > H4 && M5 > H1 && M5 > H4)open=1;
//close candle 1 jam dibawah close candle 4jam dan candle 5menit dibawah close candle 1 jam dan dibawah close candle 4 jam
   if(H1 < H4 && M5 < H1 && M5 < H4)open=2;
//--------------------------------------------------------------------------------------------------------------------------
   total=0;
for(int i=0;i<OrdersTotal();i++)
     {
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if(OrderSymbol()==Symbol())total++;
}

if(open==1){
tipe=0;
Price=MarketInfo(Symbol(),MODE_ASK);
TP=Price+(TakeProfit*point*Point);
SL=Price-(StopLoss*point*Point);
}
if(open==2){
tipe=1;
Price=MarketInfo(Symbol(),MODE_BID);
TP=Price-(TakeProfit*point*Point);
SL=Price+(StopLoss*point*Point);
}
if(total==0 && open !=0 && TimeCurrent() > LastOpen + 3600 ){
ticket=OrderSend(Symbol(),tipe,Lot,Price,100,SL,TP,"Candle_"+Symbol(),Magic,clrGreen);
      if(ticket>0)GlobalVariableSet("LastOpen_"+Symbol(),TimeCurrent());
       if(ticket<0)
     {
      Alert("OrderSend failed with error #",GetLastError());
     }
   else
      Alert("OrderSend placed successfully");
      }
  }
//+------------------------------------------------------------------+


Sudah bener belum ki supo

thanks ea nya boss riza semoga berkah
 
saya test di real dulu gan..
di demo aja dulu boss biar nggak berisiko

pulang dari tambang buka mt4 eh dapat moment bagus euro

contoh op yang valid
goodmoment.png

masih terjun

goodmoment1.png

ok sohib trader semuanya sudah paham kan sejauh ini cara open posisi

DI ATAS ADALAH CONTOH OPEN SELL BEGITU JUGA KEBALIKANNYA , UNTUK OPEN BUY​
 
JIKA SUDAH HAPAL DALAM MELIHAT PERGERAKAN CANDLE DAN LANCAR DALAM MELAKUKAN OPEN POSISI MAKA KITA LANJUT CARA MEMBACA CANDLE JIKA HARGA BERBALIK ARAH

CONTOH GAMBAR INI

Balik Arah.png

contoh op buy GU

REV_OPBUY gu.png
 
Lumbung Dolllar nya Ki Supo pancen oye ... !!!
Hari ini akun ku nambah 7.17% dari Balance pagi hari tadi.
Buat aku ini hasil yg luar biasa besarnya, kalau bagi Ki Supo gak ada apa-apanya.

Thanks Ki atas pencerahannya.
MM is the most important in Forex Trading besides psychologists.
 

ane minta pencerahan di 2 picture yang sudah saya tandai ki supo .. maaf banyak nanya..nubi belum paham ingin pinter​
 

Attachments

  • SoeHoeCom_Balik Arah.png
    SoeHoeCom_Balik Arah.png
    20.5 KB · Views: 94
  • SoeHoeCom_goodmoment1.png
    SoeHoeCom_goodmoment1.png
    24.2 KB · Views: 86
@ ceppy2015... piye to koq iseh durung mudeng wae ? kalau belum mudeng, sprt yg dilakukan oleh fajar, tambahkan indikatrok buy-sell anda untuk alat bantu analisa dan ambil keputusan. Dengan cara itu anda pasti bisa memahami perilaku harga yg tercermin pada naik turun-nya CandleStick.
 
juragan SanexForex,, ingkang kulo dereng mangertos niku waktu pass kagem OP. seng di waos puniko candle sak 60 menit sak bibaripun 1 candle sampun close, nopo dos pundi. amargi kawulo estu nembe 1 wulan langkung sekedik mlebet teng dagang niki.. nyuwun ilmu nipun Juragan @SanaxForex kaliyan Juragan ki supo
 
Back
Top