Disliked{quote} Trade trend can each dash. I had little time for a test . Triplegap dash can open a trade in the direction of the trend during the market correction . It is worth to observe. {image}Ignored
what timeframe do you use on g1 & g2?
Trading Dashboard For Currency Basket Trader (EA) 33 replies
I need a Trading Dashboard or Trading Panel 1 reply
Dashboard DB_CCFp-Diff Sessions/News Trading 6 replies
Dashboard trading EURNZD 3 replies
Which dashboard for basket trading? 9 replies
Disliked{quote} i see a lot of greens.. what timeframe do you use on g1 & g2?Ignored
Disliked{quote} For that i said if we can link all dash for have supersignals maybe we can do somethings powerful almost automatic...Ignored
Disliked{quote} Yes, and then load it on a supercomputer with a laser connection to you broker (o wait, he is against you) so somewhere else. It may not be my trading style but i have to agree with Jibala (and sister DingDong fibo "manual") and go for the 5 to 8 pips you can catch every market move with low risk. And the more dashboards/signals you are going to link the more misleading and distorted the information will get. Thinking that you can combine a lot of signals (the more the better) and create the "holy grail trader" is a bit of a forex rookie...Ignored
Disliked{quote} Precisely get a mix of different dash signals is for simplify all. Connector can compare in some moment ( knowing strong/weaks every dash ) that signals for see if all dash have same signal. Its like filter. If you only see one signal filtered, you will improve trading without have code new dash or modify currents. But its only idea. Ideas are free and sometimes "stupid" ideas open new ways ( you see facebook )Ignored
//--------------------------------------------------------[highlight=DarkOrange]//Order Buy//[/highlight]---------------------------------------------
if(SOtherThink && pairinfo[i].lastSignal!=BUY && (OnlyAddProfit==false || bprofit[i]>=0.0))
{
pairinfo[i].lastSignal=BUY;
if (autotrade==False && STrendingBuy){
{ticket=OrderSend(TradePairs[i],OP_BUY,lot,MarketInfo(TradePairs[i],MODE_ASK),100,0,0,comment,Magic_Number,0,Blue);}
}else{
pairinfo[i].lastSignal=NOTHING;
}
}
if(SOtherThink && pairinfo[i].lastSignal!=BUY && (OnlyAddProfit==false || bprofit[i]>=0.0))
{
pairinfo[i].lastSignal=BUY;
if (Use_Pulback==False && SPullbackBuy){
ticket=OrderSend(TradePairs[i],OP_BUY,lot,MarketInfo(TradePairs[i],MODE_ASK),100,0,0,comment,Magic_Number,0,Blue);
}else{
pairinfo[i].lastSignal=NOTHING;
}
}
if(SOtherThink && pairinfo[i].lastSignal!=BUY && (OnlyAddProfit==false || bprofit[i]>=0.0))
{
pairinfo[i].lastSignal=BUY;
if (Use_Reversal==False && SReversalBuy){
ticket=OrderSend(TradePairs[i],OP_BUY,lot,MarketInfo(TradePairs[i],MODE_ASK),100,0,0,comment,Magic_Number,0,Blue);
}else{
pairinfo[i].lastSignal=NOTHING;
}
}
//--------------------------------------------------------[highlight=DarkOrange]//Order Sell//[/highlight]---------------------------------------------
if(SOtherThink && pairinfo[i].lastSignal!=SELL && (OnlyAddProfit==false || bprofit[i]>=0.0))
{
pairinfo[i].lastSignal=SELL;
if (autotrade==False && STrendingSell){
{ticket=OrderSend(TradePairs[i],OP_SELL,lot,MarketInfo(TradePairs[i],MODE_BID),100,0,0,comment,Magic_Number,0,Red);}
}else{
pairinfo[i].lastSignal=NOTHING;
}
}
if(SOtherThink && pairinfo[i].lastSignal!=SELL && (OnlyAddProfit==false || bprofit[i]>=0.0))
{
pairinfo[i].lastSignal=SELL;
if (Use_Pulback==False && SPullbackSell){
ticket=OrderSend(TradePairs[i],OP_SELL,lot,MarketInfo(TradePairs[i],MODE_BID),100,0,0,comment,Magic_Number,0,Red);
}else{
pairinfo[i].lastSignal=NOTHING;
}
}
if(SOtherThink && pairinfo[i].lastSignal!=SELL && (OnlyAddProfit==false || bprofit[i]>=0.0))
{
pairinfo[i].lastSignal=SELL;
if (Use_Reversal==False && SReversalSell){
ticket=OrderSend(TradePairs[i],OP_SELL,lot,MarketInfo(TradePairs[i],MODE_BID),100,0,0,comment,Magic_Number,0,Red);
}else{
pairinfo[i].lastSignal=NOTHING;
}
} DislikedLooks like great coding Sister (bit messy but alright). It would help if you tell us what the problem is.....(it doesn't make coffee in the morning ?)Ignored
Disliked3 Scenario Buy, 3 Scenario Sell, Try support for auto order, but........Lol...{quote} ahhaha, My coding very messy, Brother Hotpotato...... i'm try 1,2,3,....,...,.... structur code, but not success, always do 5 order at one time or not do anything.....Lol.....
i will send u coffee, Brother......ahhaha...
Ignored
Disliked{quote} OK... First if in every sentence is same. You can encapsulate 3 Scenarios in one...But I think you have problem with some variable because if don't open trade means never happens rules needed itIgnored
//--------------------------------------------------------//Trending//--------------------------------------------- bool STrendingBuy = A ; bool STrendingSell= B ; //--------------------------------------------------------//Pullback//--------------------------------------------- //--------------------------------------------------------//Pullback//--------------------------------------------- bool SPullbackBuy = C ; bool SPullbackSell= D ; //--------------------------------------------------------//Reversal//--------------------------------------------- //--------------------------------------------------------//Reversal//--------------------------------------------- bool SReversalBuy = E ; bool SReversalSell= F ; //--------------------------------------------------------//other Think//--------------------------------------------- bool SOtherThink = G ; //--------------------------------------------------------//other Think//--------------------------------------------- //--------------------------------------------------------//Command//--------------------------------------------- boll Trending ; bool Pulback ; bool Reversal ; //--------------------------------------------------------//Command//---------------------------------------------
Dislikedhi, for problem with prefix/suffix, u can download again..... {image} {file} {quote} Finally, This is good scenario, Brother braintheboss....Ignored
Disliked{quote} Yes, problem with variable, brother braintheboss...... i'm use bool, this is scenario... //--------------------------------------------------------//Trending//--------------------------------------------- bool STrendingBuy = A ; bool STrendingSell= B ; //--------------------------------------------------------//Pullback//--------------------------------------------- //--------------------------------------------------------//Pullback//--------------------------------------------- bool SPullbackBuy = C ; bool SPullbackSell= D ; //--------------------------------------------------------//Reversal//---------------------------------------------...Ignored
Disliked{quote} The problem is in some part of your code something unexpected happens and change same value you don't want. But if impossible know it if nobody can debug it. The code you put don't have anything weird. But it's small part and we don't know where you have the problem. Don't you know debug code with the debugger? PS: A, B... are constants? Are variables? Where you work with that constants / variables...?Ignored