DislikedRight but question remains, should I sell or should I buy In direction
of this indy or against?Ignored
"Put all your efforts in becoming effortless"
HYBRID: trading system within a trading system 31 replies
Payapa Trading System - Modified Ali's Version 597 replies
Six-pair "Looser" Strategy EA Discussion 74 replies
"Never turn a winner into a looser" - Myth or Reality? 32 replies
Why not let your Looser's ride ??? 12 replies
DislikedRight but question remains, should I sell or should I buy In direction
of this indy or against?Ignored
DislikedRight but question remains, should I sell or should I buy In direction
of this indy or against?Ignored
DislikedI have been scratching my head about that myself. Your better off putting an indy on each pair separately AND either trade in the direction of the indy on each separate pair or dont trade the pairs that are going the opposite way. I have been doing this and results are surprising, but I got to lock down the total length of time for the trade. After ONLY 1 week and keep in mind its only been ONE WEEK!, I have had modest gains.
People have to get their minds off of the Expert Advisor crap and just start...Ignored
//+------------------------------------------------------------------+
//| Track the whether pairs that have risen/fallen above/below |
//| their 24-hour highs/lows. |
//+------------------------------------------------------------------+
void CheckExceedences()
{
LongBiasCount = 0;
ShortBiasCount = 0;
BiasString = "";
if (MarketInfo( EURUSDsym, MODE_BID) <= iLow( EURUSDsym, PERIOD_H1, iLowest( EURUSDsym, PERIOD_H1, MODE_LOW, 24, 0)))
ShortBiasCount += 1;
else
if (MarketInfo( EURUSDsym, MODE_ASK) >= iHigh( EURUSDsym, PERIOD_H1, iHighest( EURUSDsym, PERIOD_H1, MODE_HIGH, 24, 0)))
LongBiasCount += 1;
if (MarketInfo(GBPUSDsym, MODE_BID) <= iLow(GBPUSDsym, PERIOD_H1, iLowest(GBPUSDsym, PERIOD_H1, MODE_LOW, 24, 0)))
ShortBiasCount += 1;
else
if (MarketInfo(GBPUSDsym, MODE_ASK) >= iHigh(GBPUSDsym, PERIOD_H1, iHighest(GBPUSDsym, PERIOD_H1, MODE_HIGH, 24, 0)))
LongBiasCount += 1;
if (MarketInfo(AUDUSDsym, MODE_BID) <= iLow(AUDUSDsym, PERIOD_H1, iLowest(AUDUSDsym, PERIOD_H1, MODE_LOW, 24, 0)))
ShortBiasCount += 1;
else
if (MarketInfo(AUDUSDsym, MODE_ASK) >= iHigh(AUDUSDsym, PERIOD_H1, iHighest(AUDUSDsym, PERIOD_H1, MODE_HIGH, 24, 0)))
LongBiasCount += 1;
if (MarketInfo(USDCHFsym, MODE_BID) <= iLow(USDCHFsym, PERIOD_H1, iLowest(USDCHFsym, PERIOD_H1, MODE_LOW, 24, 0)))
ShortBiasCount += 1;
else
if (MarketInfo(USDCHFsym, MODE_ASK) >= iHigh(USDCHFsym, PERIOD_H1, iHighest(USDCHFsym, PERIOD_H1, MODE_HIGH, 24, 0)))
LongBiasCount += 1;
if (MarketInfo(USDJPYsym, MODE_BID) <= iLow(USDJPYsym, PERIOD_H1, iLowest(USDJPYsym, PERIOD_H1, MODE_LOW, 24, 0)))
ShortBiasCount += 1;
else
if (MarketInfo(USDJPYsym, MODE_ASK) >= iHigh(USDJPYsym, PERIOD_H1, iHighest(USDJPYsym, PERIOD_H1, MODE_HIGH, 24, 0)))
LongBiasCount += 1;
if (MarketInfo(USDCADsym, MODE_BID) <= iLow(USDCADsym, PERIOD_H1, iLowest(USDCADsym, PERIOD_H1, MODE_LOW, 24, 0)))
ShortBiasCount += 1;
else
if (MarketInfo(USDCADsym, MODE_ASK) >= iHigh(USDCADsym, PERIOD_H1, iHighest(USDCADsym, PERIOD_H1, MODE_HIGH, 24, 0)))
LongBiasCount += 1;
if (LongBiasCount >= 3 && LongBiasCount > ShortBiasCount)
{
BiasString = "LONG";
}
else
if (ShortBiasCount >= 3 && ShortBiasCount > LongBiasCount)
{
BiasString = "SHORT";
}
return(0);
} string AddMangle = ""; if (StringLen(Symbol()) > 6) AddMangle = StringSubstr(Symbol(), 6);
string AddChar = ""; if (StringLen(Symbol()) == 7) AddChar = StringSubstr(Symbol(), 6, 1);
Disliked[/code]I hope that's not too much "Expert Advisor crap" for anyone.Ignored
DislikedYou place it on ANY chart (only one chart) and it trades all six pairs.Ignored
Dislikedmadscalp, you're welcome, you seem to really understand the strategy, as does eTrader, so I'll be looking at your guys' posts to refine the EAs. I believe I'm in synch with what you are doing but I do have my own take on determining long/short bias.Ignored
DislikedI can pretty easily use conventional indicators on all six currency pairs, then wrap some math/logic around them to come up with composite values that drive the long/short bias decision. That's what I'm doing now in version 04. I picked breaks above/below 24-hour highs/lows. If 3 or more pairs are breaking in one direction, that is the bias. This seems straightforward and intuitive to me, and I won't be surprised if it works as well as anything.Ignored
DislikedI can pretty easily use conventional indicators on all six currency pairs, then wrap some math/logic around them to come up with composite values that drive the long/short bias decision. That's what I'm doing now in version 04. I picked breaks above/below 24-hour highs/lows. If 3 or more pairs are breaking in one direction, that is the bias. This seems straightforward and intuitive to me, and I won't be surprised if it works as well as anything.Ignored