thank you for comment..thanks for sharing but it is garbage
it lets orders opened until they are in profit without any SL.
will crash account soon or later
Dali is good. but it's not free
Dali is not mine and not free
I don't need to make 5 years backtest to know it' s not good
orders are let opened indefinitely. most of the time it will close in profit, because price often comes back to its tracks, but one time time will open at a peak and never close the order and you will lose all your account, or wait 10 years for the order to close
Tolong mas bro, kasih hasil backtest mulai 1 januari 2021 sampai April 2021, saya mau lihat baru bisa komen, heheheeeemohon para suhu mberikan masukan atas ea racikan sendiri
hanya utk Eur, TF5m
bact test sejak Sept 2020
siapa tahu, para suhu dn rekans lain bs backtest 5 tahun ke belakang dn mberikan masukan perbaikan. terima kasih sebelumnya
semoga bermanfaat
View attachment 137081
View attachment 137082
Tolong mas bro, kasih hasil backtest mulai 1 januari 2021 sampai April 2021, saya mau lihat baru bisa komen, heheheeee
iya, bagus EA nya mas, memang EA berdasarkan indikator seperti itu, dia akan buka posisi kalau memenuhi persyaratan yang ditentukan, saran saya bagaimana bisa open posisi per step sampai tidak memenuhi kriteria sehingga trading yang dihasilkan sedikit banyak bukan banyak sekali tapi ditambah lah sedikit open posisinya,,,,tinggal diatur jumlah lot dan tp sl nya
This is my review for this thread:
No SL -> Account crasher. Stay away and save your money!
Di forum ini memang belum ada saya dapatkan yang share masalah cara menambah step untuk open posisiDimn bs belajar mbuat open buy rule per step spt yg Bro sarankan? Di thread forum yg mana pd forum soehoe ini ?
Mauliate Bro
need pipstep?
iya, bagus EA nya mas, memang EA berdasarkan indikator seperti itu, dia akan buka posisi kalau memenuhi persyaratan yang ditentukan, saran saya bagaimana bisa open posisi per step sampai tidak memenuhi kriteria sehingga trading yang dihasilkan sedikit banyak bukan banyak sekali tapi ditambah lah sedikit open posisinya,,,,tinggal diatur jumlah lot dan tp sl nya
same way as sl is made
this?
replace Poin with whatever is already defined in SL math
extern int Pip =20;//
double BPrice ;
double SPrice ;
//sell condition
if ( Mac<-x &&Mac< tMac && (Bid >( SPrice+Pip* Poin)||Bid <( SPrice -Pip* Poin ) ) )
SPrice = Bid;
//buy condition
if ( Mac>x &&Mac>tMac &&( Ask >(BPrice+Pip* Poin)||Ask <(BPrice -Pip* Poin) ) )
BPrice = Ask;
INI BROTHER untuk menambah PipStep bisa dicoba tinggal disesuaikan deklarasinya dan lain2 dengan anda punya.butuh bahasa mql4 utk langkah2
BT mulai Sept 2020 sd Sept 9, 2021
mengikuti saran mu Bro, TP:7, SL:30, Trailing stop:5 , lot:0,2, dengan hasil sbb:
View attachment 137275
View attachment 137276
View attachment 137277
mohon saran master Herry Arruanpitu Amopanis ionone2
thank you in advance
salam
INI BROTHER untuk menambah PipStep bisa dicoba tinggal disesuaikan deklarasinya dan lain2 dengan anda punya.
mau lot nya tetap atau dinaikka setiap step tinggal diatur saja
void av()
{
double price,lot;
if(TotalOrder(0) > 0)
{
price = NormalizeDouble(last_price()-(pipstep*POINT),DIGIT);
lot = NormalizeDouble(last_lot(0),2);
if(TotalOrder(0) >= 1)
{
lot = NormalizeDouble(last_lot(0)*1,2);
}
if(AskPrice() <= price)
{
Order(0,WindowExpertName(),AskPrice(),lot);
}
}
if(TotalOrder(1) > 0)
{
price = NormalizeDouble(last_price()+(pipstep*POINT),DIGIT);
lot = NormalizeDouble(last_lot(1),2);
if(TotalOrder(1) >= 1)
{
lot = NormalizeDouble(last_lot(1)*1,2);
}
if(BidPrice() >= price)
{
Order(1,WindowExpertName(),BidPrice(),lot);
}
}
}
SEMOGA BISA DIGUNAKAN
SALAM PROFIT
done ea
try
saya sudah kasih pak untuk menambah open buy dan sell setiap berapa pips maunya open buy atau open sellnyaEa racikan sendiri is running now.
Maunya sy, menambah bbrp op buy n sell rules pd rules yg sdh ada skrg. Spy mengisi kekosongan2 transaksi.
Thank you Herry Arruanpitu mighty ionone2 Amopanis for motivating me to improve the ea.
Improvemnt is still needed.
INI BROTHER untuk menambah PipStep bisa dicoba tinggal disesuaikan deklarasinya dan lain2 dengan anda punya.
mau lot nya tetap atau dinaikka setiap step tinggal diatur saja
void av()
{
double price,lot;
if(TotalOrder(0) > 0)
{
price = NormalizeDouble(last_price()-(pipstep*POINT),DIGIT);
lot = NormalizeDouble(last_lot(0),2);
if(TotalOrder(0) >= 1)
{
lot = NormalizeDouble(last_lot(0)*1,2);
}
if(AskPrice() <= price)
{
Order(0,WindowExpertName(),AskPrice(),lot);
}
}
if(TotalOrder(1) > 0)
{
price = NormalizeDouble(last_price()+(pipstep*POINT),DIGIT);
lot = NormalizeDouble(last_lot(1),2);
if(TotalOrder(1) >= 1)
{
lot = NormalizeDouble(last_lot(1)*1,2);
}
if(BidPrice() >= price)
{
Order(1,WindowExpertName(),BidPrice(),lot);
}
}
}
SEMOGA BISA DIGUNAKAN
SALAM PROFIT