I would like to know if someone will tell me what system a Ea I found is using. When I say system I mean what rules and indicators it is using. Thank all who help.
Attached File(s)
Please suggest a simple & effective Method/System of "Trading System" Forum to newbie 182 replies
HYBRID: trading system within a trading system 31 replies
Day Trading system - Simple system to make money 51 replies
Trapping System: Way to Fully-Automated Trading System 47 replies
Would you trade this system? New system #2. 10 replies
DislikedI would like to know if someone will tell me what system a Ea I found is using. When I say system I mean what rules and indicators it is using. Thank all who help.Ignored
if (g_hour_152 >= gi_156 || g_hour_152 <= gi_160) gi_172 = TRUE; g_high_176 = High[iHighest(NULL, 0, MODE_HIGH, gi_92, 1)]; g_low_184 = Low[iLowest(NULL, 0, MODE_LOW, gi_92, 1)]; if (g_low_184 - Bid == 0.0) gi_164 = TRUE; if (Bid - g_high_176 == 0.0) gi_168 = TRUE; if (!MoneyManager) g_lots_216 = Lots; else g_lots_216 = NormalizeDouble(AccountFreeMargin() * gi_124 / 100000.0 / (g_leverage_148 / 100), gi_144);
DislikedIts a decompiled EA...so its hard to tell just want it does..but from the code below that is in the EA..it looks like a session breakout EA.
[code]
if (g_hour_152 >= gi_156 || g_hour_152 <= gi_160) gi_172 = TRUE;
g_high_176 = High[iHighest(NULL, 0, MODE_HIGH, gi_92, 1)];
g_low_184 = Low[iLowest(NULL, 0, MODE_LOW, gi_92, 1)];
if (g_low_184 - Bid == 0.0) gi_164 = TRUE;
if (Bid - g_high_176 == 0.0) gi_168 = TRUE;
if (!MoneyManager) g_lots_216 = Lots;
else g_lots_216 = NormalizeDouble(AccountFreeMargin() * gi_124 / 100000.0 / (g_leverage_148...Ignored