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.
Testing:-
StopLose=35
TakeProfit=50
TrailingStop=30
TrailingStep=15
![]()
![]()
p/s: cuba lihat.. TP x perlu setkan kat terminal, cuma setkan kat EA jer. tapi bila cukup 50pips EA akan autoclosed.. sesuai jika korang post byk2.. yg letih nak set TP..
Salam.. kalo EA nie dah ada MOD bleh close this thread.
Ada 2 jenis EA yg aku Hidden TP yg aku jumpa & antara koleksi EA yg aku pkai.. sesuai utk scalper, daily trader & swinger.. EA nie hanye berfungsi utk close jer.. korg yg kene Entry manual, dan close plak.. EA nie yg akan jalankan tugasnya.
1) Nie EA yg ada Hidden TP jer..paid. manakala SL & trailing stop x hiddden. EA nie akan lock bila post dah mula profit.
cuma korg nak wat TP baper, SL & Trailing stop. so, akan autoclose bila TP, SL & Traingstop dah mengena. EA akan autosetkan. xperlu penat2 nak adjust.. cuma price target akan dihiddenkan & SL akan trus lock bila lepas 30pips.. TP plak akan hidden & apabila dah cukup target secara automatik akan closed.. kire utk hiddenkn TP drp Broker..
Cuba try dulu.. mmg menarik...paid
paid
Sila download kat sini:-
Code:-
http://www.4shared.com/file/195687546/7ed3b260/HIDDEN_TP_TSSL_EA_FinalVersion.html
2) Nie EA yg aku jumpa kat FF.. EA nie hidden TP & SL.. mmg mantap..paid
paid
Sila download kat sini:-
Code:-
http://www.4shared.com/file/202798981/8226288/HIDDEN_TPSL_EA.html
p/s: SETkan TP & SL bersesuaian dgn jenis pair yg korg biasa trade.. Happy trading..paid

extern bool use_hidden_stop_loss = true;
extern int hidden_sl = 35;
extern bool use_hidden_take_profit = true;
extern int hidden_tp = 100;
string symbol;
int type;
double bid,ask,point;
int start()
{
int i;
for(i=0;i<OrdersTotal();i++)
{
OrderSelect(i, SELECT_BY_POS);
symbol = OrderSymbol();
type = OrderType();
bid = MarketInfo(symbol,MODE_BID);
ask = MarketInfo(symbol,MODE_ASK);
point = MarketInfo(symbol,MODE_POINT);
if (use_hidden_take_profit)
{
if (type == OP_BUY && OrderOpenPrice()+hidden_tp*point<=bid ) {Wait(); OrderClose( OrderTicket(), OrderLots(), bid, 5, Red );}
if (type == OP_SELL && OrderOpenPrice()-hidden_tp*point>=ask ) {Wait(); OrderClose( OrderTicket(), OrderLots(), ask, 5, Red );}
}
if (use_hidden_stop_loss)
{
if (type == OP_BUY && OrderOpenPrice()-hidden_sl*point>=bid ) {Wait(); OrderClose( OrderTicket(), OrderLots(), bid, 5, Red );}
if (type == OP_SELL && OrderOpenPrice()+hidden_sl*point<=ask ) {Wait(); OrderClose( OrderTicket(), OrderLots(), ask, 5, Red );}
}
}
return(0);
}
void Wait() { while( IsTradeContextBusy() ) { Sleep(50); } }
Already informed TT to reupload however not responded yet.