second request for this.Please help if someone can do it.
PZ day trading repaints those boxes - signals, Can not be used in EA
Quote from:
Scalping and Intraday Trading Indicator
Developers In order to build your expert advisor, you can read data from the indicator using the iCustom() function as exemplified below. Read more information about the iCustom() function here.
//---- Read values from the signal buffer int start() { // Read signal for this bar double value = iCustom(Symbol(), Period(), "PZ_DayTrading_LICENSE", 4, 1); // Do something if(value == OP_BUY) { /* Your code for bullish signal */ } if(value == OP_SELL){ /* Your code for bearish signal */ } if(value == EMPTY_VALUE) { /* Your code if no signal */} // Exit return(0);
Quote from:
Scalping and Intraday Trading Indicator
Developers
In order to build your expert advisor, you can read data from the indicator using the iCustom() function as exemplified below. Read more information about the iCustom() function here.
//---- Read values from the signal buffer int start() { // Read signal for this bar double value = iCustom(Symbol(), Period(), "PZ_DayTrading_LICENSE", 4, 1); // Do something if(value == OP_BUY) { /* Your code for bullish signal */ } if(value == OP_SELL){ /* Your code for bearish signal */ } if(value == EMPTY_VALUE) { /* Your code if no signal */} // Exit return(0);That means that a different indicator has to be bought
Spammer

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi everyone,
Please can someone help code the attached indicator into an EA. I would like to enter positions when the indicator signals a short or long opportunity at the open of the next bar.
I would like to have a take profit and stop loss option.
Can anyone help with this so we can all give it a try.
<Decompiled code removed>