• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion I will make a Free EA with your Indicator

Nice thread with busy trader discuss on the thread
I have seen many trader expert to created ea and like trading with ea
hopefully all success
 
Wow amazing thread....could you help me with this one,
PZ Trend Trading indicator
This based on this thread, https://soehoe.id/pz-trend-trading-indicator.t7940/ could you help me built EA from this indicator

Trend Trading 4.5
The PZ Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. Its winning ratio is around 85%.




      • Trade financial markets with confidence and efficiency
      • Profit from established trends without getting whipsawed
      • Recognize profitable pullbacks, breakouts and early reversals
      • The indicator is non-repainting and implements alerts
      • The indicator analyzes its own quality and performance
      • It includes a multi-symbol and multi-timeframe scanner
      • It implements a multi-timeframe dashboard
Established trends offer dozens of trading opportunities, but most trend indicators neglect them completely! The PZ Trend Trading indicator displays an average of 10 different trades per trend.
❶ is a bullish trend change
❶ is a bearish trend change
❷ is a pullback in the direction of the trend
❸ is an inside bar(s) breakout in the direction of the trend
--- is a correction during a downtrend
--- is a correction during an uptrend
Blue Bars are a bullish secondary trend
Red Bars are a bearish secondary trend

for devoloper.

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.

//---- Step 1: Define constants in your EA
#define OP_BUY_1 4 // Bullish Trend Change (Blue 1)
#define OP_SELL_1 5 // Bearish Trend Change (Red 1)
#define OP_BUY_2 6 // Bullish Pullback (2)
#define OP_SELL_2 7 // Bearish Pullback (2)
#define OP_BUY_3 8 // Bullish Inside Bar Breakout (3)
#define OP_SELL_3 9 // Bearish Inside Bar Breakout (3)
#define OP_BUY_4 10 // Bullish Correction during Downtrend (blue dash)
#define OP_SELL_4 11 // Bearish Correction during Uptrend (red dash)
//---- Step 2: Read values from the signal buffer
int start()
{
// Read signal for this bar
double value = iCustom(Symbol(), Period(), "Marketpz-trend-trading", 10, 1);
// Do something
if(value == OP_BUY_1) { /* Your code for bullish trend */ }
if(value == OP_SELL_1){ /* Your code for bearish trend */ }
if(value == OP_BUY_2) { /* Your code for bullish pullback */ }
if(value == OP_SELL_2){ /* Your code for bearish pullback */ }
if(value == OP_BUY_3) { /* Your code for bullish inside bar breakout */ }
if(value == OP_SELL_3){ /* Your code for bearish inside bar breakout */ }
if(value == OP_BUY_4) { /* Your code for bullish correction */ }
if(value == OP_SELL_4){ /* Your code for bearish correction */ }
if(value == EMPTY_VALUE) { /* Your code if no signal */}
// Exit
return(0);
}
Many Thaks

Note : Rename Wininet.ex4 to wininet.dll

Wow :)

I'll look what I can do Bro.
Work is piling up for me. I like it!:ok:
 
This is my review for this thread:
Excellent thread.....need this kind of thread...always
 
i am uploading an indicator...which seems pretty useful for traders....hope if you like it..then please make an expert for it...
indicator is very simple....simply gives signals for buy/sell position base on ATR....
please make an expert which should consist SL, TP and also multiplier (though i will not use it) and please if we also can change the "ATR Periods" which is in the indicator.....we will make set file later...thank you...
 

Attachments

Last edited:
i am uploading an indicator...which seems pretty useful for traders....hope if you like it..then please make an expert for it...
indicator is very simply....simply gives signals for buy/sell position base on ATR....
please make an expert which should consist SL, TP and also multiplier (though i will not use it) and please if we also can changes the "ATR Periods" which is in the indicator.....we will make set file later...thank you...

Thanks for share hassn

I have some accumulated work, but this weekend I want to put the thread up to date.
Saved in hassn folder :ok:

Do you have the mq4 file?
 
just simple ea buy at blue arrow and sell at red one
Hi darksider

I have managed to find this same indicator on another website, (yours could not read the buffers ....)
I have renamed it, and I include it in the rar file.
The EA buy when there is any arrow up, close buys and open sells when there is an arrow below.
The test is like this, with SL and TP at 0.

In the video if there is TP and SL ...

Test it friend:)


$ Simple EA - massive-fx-profit-indicator  M30 TEST.gif
 

Attachments

Last edited:
Winidecorw , you are so nice guy.
Bye the way can you make a EA for the indicator? I bet this works pretty good.
Thank you for your effort!
 

Attachments

What indicator not repaint, almost repaint indicator
it only help tool for trader I think, I like naked chart to trade on micro account firewoodfx
 
Super_Signal is Pure repainted indicator.....can you really guess..if it does not repaint.....then it can change 100USD to billions of dollars....
 
Back
Top