• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 2:28pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 2:28pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

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

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 70
Attachments: Request And Idea
Exit Attachments

Request And Idea

  • Last Post
  •  
  • 1 Page 234 5
  • 1 Page 234 5
  •  
  • Post #21
  • Quote
  • Feb 15, 2020 6:10am Feb 15, 2020 6:10am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
Quoting mdanishb
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
What ever filters and conditions are inserted on purpose the worse point is price going up and arrow telling down
 
 
  • Post #22
  • Quote
  • Apr 26, 2020 1:15am Apr 26, 2020 1:15am
  •  tadzki41
  • | Joined Apr 2020 | Status: Member | 31 Posts
Good day @mntiwana...
Is it possible for you to make this ea...

To buy or sell when it will touch the outside borders in 1M TF..
TP = as low as 1pip.
Include also Trailing Stop.

Please find attached files..
tnx
Attached Image (click to enlarge)
Click to Enlarge

Name: Border ligns Setting.PNG
Size: 27 KB
Attached File
File Type: ex4 Border ligns.ex4   12 KB | 88 downloads
 
 
  • Post #23
  • Quote
  • May 4, 2020 2:48pm May 4, 2020 2:48pm
  •  Nonip
  • | Joined Nov 2019 | Status: Member | 130 Posts
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
  • Post #24
  • Quote
  • May 4, 2020 4:28pm May 4, 2020 4:28pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
Quoting Nonip
Disliked
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.
Ignored
"Multi purpose trade manager updated"

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 Image (click to enlarge)
Click to Enlarge

Name: GBPUSDH1.png
Size: 29 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: p.png
Size: 216 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: p2.png
Size: 212 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: p3.png
Size: 209 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: p4.png
Size: 208 KB
Attached File
File Type: ex4 Multi purpose trade manager updated.ex4   84 KB | 133 downloads
 
 
  • Post #25
  • Quote
  • May 4, 2020 4:36pm May 4, 2020 4:36pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
Quoting tadzki41
Disliked
Good day @mntiwana... Is it possible for you to make this ea... To buy or sell when it will touch the outside borders in 1M TF.. TP = as low as 1pip. Include also Trailing Stop. Please find attached files.. tnx {file} {image}
Ignored
Hi tadzki
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
 
 
  • Post #26
  • Quote
  • May 8, 2020 11:17am May 8, 2020 11:17am
  •  Hercs
  • Joined Jan 2006 | Status: Senior Member | 641 Posts
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.
Attached File
File Type: mq4 TrendEnvelopesMTF.mq4   7 KB | 99 downloads
Hercs
 
 
  • Post #27
  • Quote
  • May 8, 2020 12:38pm May 8, 2020 12:38pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
Quoting Hercs
Disliked
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. {file}
Ignored
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
Attached Image (click to enlarge)
Click to Enlarge

Name: XAUUSDM1.png
Size: 46 KB

Attachment 3629520
Attached Image (click to enlarge)
Click to Enlarge

Name: AUDUSDM30.png
Size: 38 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: p.png
Size: 217 KB
Attached File
File Type: ex4 Trend envelopes (averages) - mtf nmc.ex4   96 KB | 136 downloads
 
2
  • Post #28
  • Quote
  • Edited at 8:47am May 9, 2020 7:39am | Edited at 8:47am
  •  Hercs
  • Joined Jan 2006 | Status: Senior Member | 641 Posts
Quoting mntiwana
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
 
 
  • Post #29
  • Quote
  • May 9, 2020 10:17am May 9, 2020 10:17am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
Quoting Hercs
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
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
 
 
  • Post #30
  • Quote
  • May 9, 2020 11:09am May 9, 2020 11:09am
  •  Yashir
  • | Joined Apr 2020 | Status: Member | 70 Posts
[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.
Attached File
File Type: ex4 Powered_Trend_Signal_Histo_Alert.ex4   16 KB | 140 downloads
 
 
  • Post #31
  • Quote
  • May 10, 2020 6:15am May 10, 2020 6:15am
  •  Hercs
  • Joined Jan 2006 | Status: Senior Member | 641 Posts
Quoting mntiwana
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
My indicator has served me well through the years, but for the development of the latest coding, it would have been good enough.
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
 
 
  • Post #32
  • Quote
  • May 10, 2020 9:24am May 10, 2020 9:24am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12929194]
Quoting mntiwana
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
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 -
Attached Image (click to enlarge)
Click to Enlarge

Name: EURGBPM15.png
Size: 31 KB
 
 
  • Post #33
  • Quote
  • May 10, 2020 9:47am May 10, 2020 9:47am
  •  Yashir
  • | Joined Apr 2020 | Status: Member | 70 Posts
[quote=mntiwana;12929893]
Quoting Yashir
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
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.
 
 
  • Post #34
  • Quote
  • May 10, 2020 11:06am May 10, 2020 11:06am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12929916]
Quoting mntiwana
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
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
Attached Image (click to enlarge)
Click to Enlarge

Name: comfx.png
Size: 103 KB
 
 
  • Post #35
  • Quote
  • May 10, 2020 11:07am May 10, 2020 11:07am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12929916]
Quoting mntiwana
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
Any way will be try finding something suitable for you,of course Mladen's nrp thingy -
 
 
  • Post #36
  • Quote
  • May 10, 2020 11:41am May 10, 2020 11:41am
  •  Yashir
  • | Joined Apr 2020 | Status: Member | 70 Posts
[quote=mntiwana;12929994]
Quoting Yashir
Disliked
{quote} Any way will be try finding something suitable for you,of course Mladen's nrp thingy -
Ignored
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.
 
 
  • Post #37
  • Quote
  • May 10, 2020 1:02pm May 10, 2020 1:02pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12930039]
Quoting mntiwana
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
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
 
 
  • Post #38
  • Quote
  • May 10, 2020 2:34pm May 10, 2020 2:34pm
  •  Yashir
  • | Joined Apr 2020 | Status: Member | 70 Posts
[quote=mntiwana;12930106]
Quoting Yashir
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 between
Ignored
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.
Attached Image (click to enlarge)
Click to Enlarge

Name: System.png
Size: 42 KB
 
 
  • Post #39
  • Quote
  • May 10, 2020 3:34pm May 10, 2020 3:34pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,244 Posts
[quote=Yashir;12930179]
Quoting mntiwana
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
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 -
 
 
  • Post #40
  • Quote
  • May 10, 2020 4:04pm May 10, 2020 4:04pm
  •  Yashir
  • | Joined Apr 2020 | Status: Member | 70 Posts
[quote=mntiwana;12930226]
Quoting Yashir
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.
 
 
  • Platform Tech
  • /
  • Request And Idea
  • Reply to Thread
    • 1 Page 234 5
    • 1 Page 234 5
0 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2022