
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
hello fxbs
hello fxbs great work.
You do nothing else than programming indicators day and night.
Great work thx.
I tried "MTF_Stoch_4TFx4_CJA.mq4 (1"
but it shows only 3 Stochastics instead of four. Is something wrong with the code or something wrong with my setups?
thx
Turned off
hello fxbs great work.
You do nothing else than programming indicators day and night.
Great work thx.
I tried "MTF_Stoch_4TFx4_CJA.mq4 (1"
but it shows only 3 Stochastics instead of four. Is something wrong with the code or something wrong with my setups?
thxThere is nothing wrong i just checked the indicator that is avaliable for downloading and the 4th STOCH is set to false so only 3 are turned on, go into inputs and set the 4th STOCH to true. Each STOCH level is able to be turned OFF/ON as per my original indicator before this modification was made.
cja
thx cja
ahh thx easy solution..
This one is incredibly early and good...but I think it repaints...can anybody fix that? ES
It is not repainting, it is lagging in time frames lower than the indicators chosen time frame.
Change the line 77 of #MTF AlaskanPipAssassin :
to read
[PHP]limit = MathMax( MathMin(Bars - counted_bars,CountBars),MathMax(TimeFrame/Period(),1));and everything in the indicator will work fine (even the bar limitation will work)
ahh...Thanks mladen
It is not repainting, it is lagging in time frames lower than the indicators chosen time frame.
Change the line 77 of #MTF AlaskanPipAssassin :
to read
[PHP]limit = MathMax( MathMin(Bars - counted_bars,CountBars),MathMax(TimeFrame/Period(),1));This is major..I know this is a lot...but could admin or theat least the authors of the posted files amend their posts for the future visitors... ES
p.s. 4 visitors: (same old rule) try to use latest or proven versions ...
... just posters conscience...
mod v3 cja's 4in1 macd, (hoh v2) mmtf; "classic"; standalone
But...
When applying the fix "
limit = MathMax( MathMin(Bars - counted_bars,CountBars),MathMax(TimeFrame/Period(),1));
to this below..it does not work...
sailor,
Try this: #MTF_MovingAverage Correlation
It will plot 2 moving averages, 1 for the current symbol and 1 for whatever symbol you enter. You can still set TimeFrame for whatever you want.
There are 2 new Inputs:
The MA value for the correlated currency is, by necessity, not correct. (The price for the correlated currency is usually too different than the base currency. You wouldn't be able to see it on the chart, so it is "normalized" to fit.) But, the "look" of the MA is correct, so you should be able to make a good correlation comparison.
I hope this is what you want. Let me know if you find anything wrong with it or you'd like something else.
I've attached 2 pics to show what it looks like. The pics show the following:
EURUSD H4 Chart
SMA(13) - D1 TimeFrame
SMA(13) - D1 TimeFrame for USDCHF
EURUSD H4 Chart
SMA(5) - D1 TimeFrame
SMA(5) - D1 TimeFrame for GBPUSD
KerisThis is major..I know this is a lot...but could admin or at least the authors of the posted files amend their attachments for the future visitors...
ES
Hi to ALL,
ALL MTF Indicators don't draw the graphic on the chart correctly because
of the BUG in the code.
To avoid this BUG you should fix only one line in the code:
instead of limit = Bars-counted_bars;
should be limit=Bars-counted_bars+TimeFrame/Period();
Regards,
IgorBut...
When applying the fix "
limit = MathMax( MathMin(Bars - counted_bars,CountBars),MathMax(TimeFrame/Period(),1));
to this below..it does not work...That is made for #MTF AlaskanPipAssassin
I have no idea how #MTF_MovingAverage Correlation works, but, if based on Keris base solution than this should do the job :
PS: Just looked into the code, and, yes, this is the solution