Disliked{quote} Yes mine one is little different. In my indicator, I am using an extra filter (&&) AND condition on three if statements. That is why it is giving fewer signals than yours one. And did you find any solution to my request. Or anyone else who can help?Ignored
Similar Threads
Supertrend and MTF supertrend IDEA 11 replies
5EMA hilo system, and EA Idea 18 replies
New idea for strategy with ATR and MA 10 replies
MT4 Platform Master and Slave Idea Help Please! 2 replies
Amazing idea, ea request 0 replies

Hello @mntiwana. I would like to say that the effort you put here in FF to assist fellow traders is much appreciated. Could you know any Good trade manager EA or a working copy Of multipurpose trade manager EA? I would really appreciate.
"You can't buy the bottom, nor sell the top. The best you can strive for is
1
- Joined Mar 2013 | Status: Member | 2,244 Posts
DislikedHello @mntiwana. I would like to say that the effort you put here in FF to assist fellow traders is much appreciated. Could you know any Good trade manager EA or a working copy Of multipurpose trade manager EA? I would really appreciate.Ignored
Once long ago i asked permission by rene to post Steve MPTM (Multi Purpose Trade Manager) and he replied OK,so here is one of many Steve's versions,a bit lighter than rest of his MPTM codes as those are extremely extended with a lot of features,possibly if users can understand well exact how to use/play with different options provided,almost best trade managing tools
it is trade manager - not EA (but must be in EA folder) it will be manage trades opened by user manually and or by any source
the code is cleaned and cloud protected
for more ease for users regarding features some descriptive code lines attached too
happy enjoy and pay thanks to Steve for his expertise help and contribution
Inserted Code
#include <WinUser32.mqh> #include <stdlib.mqh> #define NL "\n" //Error reporting #define slm " stop loss modification failed with error " #define tpm " take profit modification failed with error " #define ocm " order close failed with error " #define odm " order delete failed with error " #define pcm " part close failed with error " #define spm " shirt-protection close failed with error " #define slim " stop loss insertion failed with error " #define tpim " take profit insertion failed with error " extern string gen ="---- Event timer ----"; extern int EventTimerSeconds = 1; // Seconds in between calculation loops extern string sep1="================================================================"; extern string ManagementStyle1 = "-------- Select your management style --------"; extern string ManagementStyle2 = "You can select more than one option"; extern bool ManageByMagicNumber = false; // Manage trades by magic number, extern int MagicNumber = 0; // so long as they have this Magic Number. extern bool ManageByTradeComment = false; // Manage trades by order comment, extern string TradeComment = "Fib"; // so long as they have this comment. extern bool ManageByTickeNumber = false; // Manage a specific trade by trade ticket number, extern int TicketNumber = 0; // and this is the ticket number to manage. extern string OverRide = "Managing this pair only will override all previous"; extern string OverRide2 = "or can be used in combination with any of the choices above"; extern bool ManageThisPairOnly = true; //Manage only this pair. //############## ADDED BY CACUS extern bool ManageSpecifiedPairs = false; // Manage the pairs specified in the next input. extern string PairsToManage = "AUDJPY,AUDUSD,CHFJPY,EURCHF,EURGBP,EURJPY,EURUSD,GBPCHF,GBPJPY,GBPUSD,NZDJPY,NZDUSD,USDCHF,USDJPY"; //Enter the pairs you want to manage here, separated by a comma. // This allows the ea to manage all existing trades extern string OverRide1 = "Managing all trades will override all other choices"; extern bool ManageAllTrades = false; // Manage all pairs traded on the account. //########################################################################################## //Position variables for CountOpenTrades int OpenTrades=0; //For FIFO int FifoTicket[]; // Array to store trade ticket numbers in FIFO mode, to cater for // US citizens and to make iterating through the trade closure loop // quicker. //Communication with my trading EA's or EA's coded using my shells string GvName = "Under management flag"; // The name of the GV that tells trading EA's not to send trades whilst the manager is closing them. //############## ADDED BY CACUS for ManageSpecifiedPairs string String; int PairsQty; string suffix; string ManagePair[]; //############## ADDED BY CACUS //Replacements for Bid, Ask etc double bid=0, ask=0, factor=0; int digits=0; //Global variable name etc for picking up failed part closures. string TicketName = "GlobalVariableTicketNo"; // For storing ticket numbers in global vars for picking up failed part-closes bool GlobalVariablesExist = false; //######################################################################################### // Now give user a variety of facilities extern string bl1 = "===================================================================="; extern string ManagementFacilities = "Select the management facilities you want"; extern string slf = "-------- Stop Loss & Take Profit Manipulation --------"; extern string BE = "---- Break even settings ----"; extern bool UseBreakEven = true; // Use Break Even. extern int BreakEvenPips = 50; // Pips to break even. extern int BreakEvenProfitPips = 10; // Pips profit to lock in. double BreakEven = 0, BreakEvenProfit = 0; //################################################################################################# extern string z3 = "---- Part-close at breakeven ----"; extern string pcbe = "PartClose settings is used in"; extern string pcbe1 = "conjunction with Breakeven and Jumping Stop settings"; extern bool UsePartClose = false; // Allow partial trade closure at break even. extern double Close_LotsFract = 0.5; // Fraction of the trade lots to close. extern double Preserve_Lots = 0.5; // Fraction of the original trade lots to keep open. double Close_Lots = 0; //################################################################################################# extern string z2 = "----------------"; extern string JSL = "---- Jumping stop loss settings ----"; extern bool UseJumpingStop = true; // Use a jumping stop loss. extern int JumpingStopPips = 30; // Jump in this pips increment. extern bool JumpAfterBreakevenOnly = true; // Only jump after break even has been achieved. double JumpingStop = 0; //################################################################################################## extern string z4 = "----------------"; extern string TSL = "---- Trailing stop loss settings. Use standard of candlestick trail. ----"; //If using TS, the user has the option of a normal trail or a candlestick trail. extern bool UseStandardTrail = false; // Use a standard trail. extern int TrailingStopPips = 50; // Number of pips to trail. extern bool StopTrailAtProfitPips = false; // Stop the trail when the profit reaches your target. extern int StopTrailPips = 0; // The target in pips to stop the trail. double TrailingStop = 0, StopTrailAtProfit = 0, StopTrail = 0; //######################################################################################################### extern string z5 = "----------------"; extern bool UseCandlestickTrail = false; // Use a candlestick trailing stop extern ENUM_TIMEFRAMES CandlestickTrailTimeFrame = PERIOD_H1;// Candlestick time frame extern int CandleShift = 1; // How many candles back to trail the stop. extern string rtb = "-- Related to both --"; extern bool TrailAfterBreakevenOnly = false; // Only trail after break even has been achieved. extern int StopTrailPipsTarget = 0; // Stop trailing at this pips profit target. Zero to disable. extern string z9 = "----------------"; extern string MSLA = "---- Add a missing Stop Loss ----"; extern bool AddMissingStopLoss = false; // Add a stop loss to trades that do not have one. extern int MissingStopLossPips = 200; // Stop loss size in pips. extern bool UseSlAtr = false; // Use ATR to calculate the stop loss. extern int AtrSlPeriod = 20; // ATR stop loss period. extern ENUM_TIMEFRAMES AtrSlTimeFrame = PERIOD_CURRENT; // ATR stop loss time frame. extern double AtrSlMultiplier = 2; // ATR stop loss multiplier. double MissingStopLoss = 0; double AtrVal = 0; //#################################################################################### extern string z9a = "----------------"; extern string hsl = "---- Hidden stop loss settings ----"; extern bool UseHiddenStopLoss = false; // Hide your stop loss from the broker. extern int HiddenStopLossPips = 200; // 'Real' pips stop loss. double HiddenStopLoss = 0; //#################################################################################### extern string z10 = "----------------"; extern string tpi = "---- Take profit inputs ----"; extern string MTPA = "-- Add a missing Take Profit --"; extern bool AddMissingTakeProfit = false; // Add a take profit to trades that do not have one. extern int MissingTakeProfitPips = 200; // Take profit size in pips. extern bool UseTpAtr = false; // Use ATR to calculate the take profit. extern int AtrTpPeriod = 20; // ATR stop loss period. extern ENUM_TIMEFRAMES AtrTpTimeFrame = PERIOD_CURRENT; // ATR take profit time frame. extern double AtrTpMultiplier = 3; // ATR take profit multiplier. double MissingTakeProfit = 0; //################################################################################## extern string htp = "-- Hidden take profit settings --"; extern bool UseHiddenTakeProfit = false; //Hide your take profit from the broker. extern int HiddenTakeProfitPips = 200; //'Real' pips take profit. double HiddenTakeProfit = 0; //################################################################################## extern string bl6 = "===================================================================="; extern string OtherStuff = "----Other stuff----"; extern bool ShowAlerts = true; // Added by Robert for those who do not want the comments. extern bool ShowComments = true; // Added by Robert for those who do not want the journal messages. extern bool PrintToJournal = true; //Enhanced screen feedback display code provided by Paul Batchelor (lifesys). Thanks Paul; this is fantastic. extern string se52 ="================================================================"; extern string oad ="----Odds and ends----"; //extern int ChartRefreshDelaySeconds = 3; extern int DisplayGapSize = 30; // Left margin size if displaying text as Comments //****************** added to make screen Text more readable // replaces Comment() with OBJ_LABEL text extern bool DisplayAsText = true; // Disable the chart in foreground CrapTx setting so the candles do not obscure the text extern bool KeepTextOnTop = true; extern int DisplayX = 100; extern int DisplayY = 0; extern int fontSise = 10; extern string fontName = "Arial"; extern color colour = Yellow; extern double spacingtweek = 0.6; // adjustment to reform lines for different font size int DisplayCount; string Gap,ScreenMessage;
Attached File
- Joined Mar 2013 | Status: Member | 2,244 Posts
sorry for late response,just today pass through
The code you posted and talking about is centered tma that repaints,means misleading,it can be used as supportive/estimating tool but not as signaling
Hi Mntiwana,
My platform tells me that I have to have an indicator rewritten as it is too slow.
To give you an idea here is a copy of the message:
2020.05.08 15:38:54.877 ::TrendEnvelopesMTF.ex4 US30,M6: indicator is too slow, 15125 ms. rewrite the indicator, please.
Could you possibly help me get it rewritten as it is above my abilities? I use it in an EA and hence the request.
Looking forward to hearing from you.
Best wishes,
Hercs.
My platform tells me that I have to have an indicator rewritten as it is too slow.
To give you an idea here is a copy of the message:
2020.05.08 15:38:54.877 ::TrendEnvelopesMTF.ex4 US30,M6: indicator is too slow, 15125 ms. rewrite the indicator, please.
Could you possibly help me get it rewritten as it is above my abilities? I use it in an EA and hence the request.
Looking forward to hearing from you.
Best wishes,
Hercs.
Attached File
Hercs
- Joined Mar 2013 | Status: Member | 2,244 Posts
DislikedHi Mntiwana, My platform tells me that I have to have an indicator rewritten as it is too slow. To give you an idea here is a copy of the message: 2020.05.08 15:38:54.877 ::TrendEnvelopesMTF.ex4 US30,M6: indicator is too slow, 15125 ms. rewrite the indicator, please. Could you possibly help me get it rewritten as it is above my abilities? I use it in an EA and hence the request. Looking forward to hearing from you. Best wishes, Hercs. {file}Ignored
Is it the only way,using this only,i think it is old enough (a lot has been changed regarding meta language since the one was coded) and there are so many newest and alternatives
for example try some newest BB stop in place or this one
Trend envelopes (averages) - mtf nmc
20 meth supported
alerts included
slope coloring
interpolated mtf
Attachment 3629520
Attached File
2
Disliked{quote} Hi Hercs Is it the only way,using this only,i think it is old enough (a lot has been changed regarding meta language since the one was coded) and there are so many newest and alternatives for example try some newest BB stop in place or this one Trend envelopes (averages) - mtf nmc 20 meth supported alerts included slope coloring interpolated mtf {image} 3629520 {image} {image} {file}Ignored
Hi, Mntiwana ("prince" I see the meaning of your name),
So much appreciate this kindness accorded me.
Here is my problem as I am using an EA in ex4-format and the coder wants more money to make a small change like inserting the name of an improved indicator such as this.
Nevertheless, I managed to get the source file and have made the necessary changes already.
Continued success too you.
Best wishes for good health during very difficult times.
Hercs.
Hercs
- Joined Mar 2013 | Status: Member | 2,244 Posts
Disliked{quote} ----- Hi, Mntiwana ("prince" I see the meaning of your name), So much appreciate this kindness accorded me. Here is my problem as I am using an EA in ex4-format and the coder wants more money to make a small change like inserting the name of an improved indicator such as this. Nevertheless, I managed to get the source file and have made the necessary changes already. Continued success too you. Best wishes for good health during very difficult times. Hercs.Ignored

the best way i think,is and should be,first to decide/select the indicator that well and perfectly suits you then get EA coded on
regards
[quote=mntiwana;12929147]{quote}
Hi Master Coders. Thanks for the wonderful help the forex community. I am uploading the Trend Signal Histo indicator. I think this is a repainting indicator in the lower time frame. A big request is anyone has the best same as an indicator which is non-repainting. Thanks to all. I need in ex4 file format.
Hi Master Coders. Thanks for the wonderful help the forex community. I am uploading the Trend Signal Histo indicator. I think this is a repainting indicator in the lower time frame. A big request is anyone has the best same as an indicator which is non-repainting. Thanks to all. I need in ex4 file format.
Attached File
Disliked{quote} Good to know you managed things accordingly -the best way i think,is and should be,first to decide/select the indicator that well and perfectly suits you then get EA coded on regards
Ignored
Having said that, the version you posted here for me, is not as good as the one I have, but I will try it out tomorrow and see if it serves the purpose.
So, in essence, I started out with a manual system that is paying me handsomely - which always includes my trusted Tr.Env. - and had this EA developed. I have been in the game long enough not to think it through properly.
Hercs.
Hercs
- Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12929194]
Hi Yashir
It will not only repaint lower TFs but always and everywhere,renamed of something on purpose - you can not have the best same as but nrp,not today neither after more 50 years -
Disliked{quote} Hi Master Coders. Thanks for the wonderful help the forex community. I am uploading the Trend Signal Histo indicator. I think this is a repainting indicator in the lower time frame. A big request is anyone has the best same as an indicator which is non-repainting. Thanks to all. I need in ex4 file format. {file}Ignored
It will not only repaint lower TFs but always and everywhere,renamed of something on purpose - you can not have the best same as but nrp,not today neither after more 50 years -

[quote=mntiwana;12929893]
Thanks for your kind reply. Truly speaking I do not understand your message. I download the Power Trend Signal from one website. Based on your experience is this a repainting indicator or not. Can I get the powered trend signal arrow indicator? Thanks for your time good wishes from Peshawar.
Disliked{quote} Hi Yashir It will not only repaint lower TFs but always and everywhere,renamed of something on purpose - you can not have the best same as but nrp,not today neither after more 50 years -{image}
Ignored
- Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12929916]
Brother
Thanks for your concerns
i love Peshawar
Indicator "Powered Trend Signal Arrow Alert - 2" and "Powered Trend Signal Histo Alert" both are repainting in every TF and all the time,i think both are from some sellers site,also "COmer.FX" one of FF member posted here at FF,here
https://www.forexfactory.com/showthr...3#post12394883
also "wolfsch" posted here at FF
https://www.forexfactory.com/showthr...6#post12331586
and must be at so many other locations here at FF and at rest of forums/blogs
How users/traders defined and claims why they using repainting indicators,they says they use such stuff for estimation only and it help them to analyze their ongoing strategy but in my poor thinking how you can trust and follow a liar,false witnessing and deceiver - for example it tell you a single either crossing zero line cross and or by printing arrow on some point,after 1 or 2 or 3 bars (suppose you are on H1 chart,it means after 1 or 2 hours) it remove/shift arrow and print on some other location,how you trade by this behavior,where goes your previous 2 hours ago decision
The most important factor that usually most users/traders did not and never noticed and calculate,when you see such attractive signals by any repainting indicators,you start searching (in other words wasting time) alike things for years without any real outcome and success
Try avoiding such misleading stories these are simply traps to sell shit stuff to newbies and innocent traders
simply see this one post (pic attached)
less than one year thousand downloads,as a result how many users were misled/trapped and how much will be in future too,how much waste of time and resources and mentally disruption
Disliked{quote} Thanks for your kind reply. Truly speaking I do not understand your message. I download the Power Trend Signal from one website. Based on your experience is this a repainting indicator or not. Can I get the powered trend signal arrow indicator? Thanks for your time good wishes from Peshawar.Ignored
Thanks for your concerns
i love Peshawar
Indicator "Powered Trend Signal Arrow Alert - 2" and "Powered Trend Signal Histo Alert" both are repainting in every TF and all the time,i think both are from some sellers site,also "COmer.FX" one of FF member posted here at FF,here
https://www.forexfactory.com/showthr...3#post12394883
also "wolfsch" posted here at FF
https://www.forexfactory.com/showthr...6#post12331586
and must be at so many other locations here at FF and at rest of forums/blogs
How users/traders defined and claims why they using repainting indicators,they says they use such stuff for estimation only and it help them to analyze their ongoing strategy but in my poor thinking how you can trust and follow a liar,false witnessing and deceiver - for example it tell you a single either crossing zero line cross and or by printing arrow on some point,after 1 or 2 or 3 bars (suppose you are on H1 chart,it means after 1 or 2 hours) it remove/shift arrow and print on some other location,how you trade by this behavior,where goes your previous 2 hours ago decision
The most important factor that usually most users/traders did not and never noticed and calculate,when you see such attractive signals by any repainting indicators,you start searching (in other words wasting time) alike things for years without any real outcome and success
Try avoiding such misleading stories these are simply traps to sell shit stuff to newbies and innocent traders
simply see this one post (pic attached)
less than one year thousand downloads,as a result how many users were misled/trapped and how much will be in future too,how much waste of time and resources and mentally disruption
- Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12929916]
Any way will be try finding something suitable for you,of course Mladen's nrp thingy -
Disliked{quote} Thanks for your kind reply. Truly speaking I do not understand your message. I download the Power Trend Signal from one website. Based on your experience is this a repainting indicator or not. Can I get the powered trend signal arrow indicator? Thanks for your time good wishes from Peshawar.Ignored

[quote=mntiwana;12929994]
Thanks, dear for your expert opinion. I found this free from one website and I checked with 1M TF and found that it is a repainting indicator. I am following your advice. I hope you will find for me a non-repainting trend indicator. Thanks and GOD bless you.
Disliked{quote} Any way will be try finding something suitable for you,of course Mladen's nrp thingy -Ignored
- Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12930039]
As there are variety of setups and formations and it comes to as much numbers of systems and ideas as much numbers of traders and their tastes,so it is better you post any of your demonstrating picture (your setup) so that easy for me to add something in between
Disliked{quote} Thanks, dear for your expert opinion. I found this free from one website and I checked with 1M TF and found that it is a repainting indicator. I am following your advice. I hope you will find for me a non-repainting trend indicator. Thanks and GOD bless you.Ignored
[quote=mntiwana;12930106]
Dear firstly Bundle of Thanks for your expert opinion. I am sending my very basic setup. I am a beginner. Plz add some indicator lists which is very powerful in regards to your experience.
Disliked{quote} As there are variety of setups and formations and it comes to as much numbers of systems and ideas as much numbers of traders and their tastes,so it is better you post any of your demonstrating picture (your setup) so that easy for me to add something in betweenIgnored
- Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12930179]
On mt4/5 terminal file menu,scroll down and click on "save as picture" for capturing pictures,as it give full information of the chart,for better analyzing things,if there is secret on chart,remove/delete it by window paint ADDon
PS : no list as it goes to thousands -
Disliked{quote} Dear firstly Bundle of Thanks for your expert opinion. I am sending my very basic setup. I am a beginner. Plz add some indicator lists which is very powerful in regards to your experience. {image}Ignored
PS : no list as it goes to thousands -

[quote=mntiwana;12930226]
Thanks for your continuous guidance. I will follow your instructions in the future. Do you need another picture or this picture will help for understanding? I use 20, 50, and 200 EMA. Used Stochastic RSI and Momentum Indicator. That's all.
Disliked{quote} On mt4/5 terminal file menu,scroll down and click on "save as picture" for capturing pictures,as it give full information of the chart,for better analyzing things,if there is secret on chart,remove/delete it by window paint ADDon PS : no list as it goes to thousands -Ignored
Thanks for your continuous guidance. I will follow your instructions in the future. Do you need another picture or this picture will help for understanding? I use 20, 50, and 200 EMA. Used Stochastic RSI and Momentum Indicator. That's all.