
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
I have an EA which I added a few indicators to (CiFractals, CiAO, CiAC) and now I would like to remove some of them. I have commented out the code that references the indicators, but it appears that no matter what I try all of the indicators are still there. I've even tried going back to the most basic EA structure but all of the indicators still appear. Below is a copy of the basic EA skeleton
#property version "1.00"
int OnInit() {
ulong magic_id = 2011;
return INIT_SUCCEEDED;
}
void OnDeinit(const int reason) {
}
void OnTick(void) {
}
void OnTradeTransaction(
const MqlTradeTransaction& trans,
const MqlTradeRequest& request,
const MqlTradeResult& result
) {
}
void OnTimer(void) {
}