Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
I know I am making you a request which you may or may not like. I am a retired person and not a coder. I am one of your admirers of information tools. I am also looking for your Heng Seng indicator .
Now I want to trade without any leverage (so no pressure for me to work under pressure) who buys goods (currencies) and sells when there is a opportunity to make a profit. It will be essential to recognise market cycles top and bottom based on averages and major support and resistance points. It will be stress-less trading I will be going into. Your indicator with the bar is a good indicator. ADX indicator will help decide whether to do range trade or not? I will be grateful if you can suggest a better indicator that the ADX indicator to establish the ranging market .l
Will you please incorporate the information provided by the attached indicator in your Narrow indicator? If you can include yearly percentage change it will be great.
Thank you.
I was make same changes:
- add changable fontsize
- add changable distance from top
- add ADX indicator (timeframe: MN1 - Monthly, W1-Weekly, D1-Daily, H4-4 hou
Version: DailyData_v02.mq4 by okfar (forex-tsd forum nick)
- redefine distance from top (independant from fontsize)
- simplifying the addition unlimit of the indicators and value of info (numeric)
//Number of dispayed digits for indicators (info) indtxt[] -> value[0] -> digit[0]
// default is 2 for all data other data
digit[0]=0;
digit[1]=5;
digit[2]=5;
digit[3]=5;
digit[4]=5;
digit[5]=3;
calculation of day change must be changed something like:
Code:
int OpenTime = 1;
int h = TimeHour(TimeCurrent())-OpenTime;
if (h < 0)
h += 24;
value[7] = 100*(MarketInfo(Symbol(), MODE_BID)/iOpen(Symbol(),PERIOD_H1,h)-1);
Version: DailyData_v03.mq4
- add statistic box
- add OpenTime (start time for daily data if typHist=0
- simplifying the addition unlimit of the indicators and value of info (numeric)