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
// === Check spread, do not trade huge spreads ===
// If the spread is unreasonable high it becomes difficult to make
// any profit at all because the chance of gaining just the spread
// is very low. The spread is not constant so we better check it.
double ls_allowed_spread = cSpreadLimit;
double ls_current_spread = MarketInfo(i_symbol, MODE_SPREAD);
if (ls_current_spread > ls_allowed_spread) {
// str_detail = "actual: " + DoubleToString(ls_current_spread,0)
// + " - allowed: " + DoubleToString(ls_allowed_spread,0);
//return NTR_HIGH_SPREAD;
... do not trade huge spread ...
} Disliked{quote} Suggestion: Would it be possible to add a parameter for the maximum allowed spread? I noticed that some currency pairs (on one of the 28 pairs that i am testing) have really big spreads at certain times during the day (often late in the evening or at night). I would like a setting in the parameters where I could simply say: don't open a trade when the spread is more than x pips. I have seen spreads that go over 25 pips (250 pipettes for a 5-digit broker) during the night. I would like to limit my trades to a maximum spread of 10 or 15 pips....Ignored
DislikedJust here briefly before I go load some more water for Texas... Thank you majamivice for sharingIgnored
DislikedHello Guys What is better H4 or D1 for this ea, and what settings?Ignored