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.
Now I see you've also made a "MTF" version. I guess that is a "multiple time frame" version?
When I try to use it, it first momentarily freezes all functionality, and after that it doesn't show anything on my charts. I tried timeframe 0 and 1, on 15m, 30m, 1h, and 1 day chart.
ChannelType is a size of fractal (1 - 3 bars, 2-5bars,3-7 bars and so on)
For correct work of MTF version you should have FractalChannel_v4 (it's correct name) in indicators folder also.
This indicator have not nothing common with TD lines, levels...
OK, I needed some time to check the MTF fractal channel indicator out on another PC, because on my usual PC it basically bugs...
Now I've checked it on another PC, and in basic mode the indicator works. But when I try to fiddle around with different settings, using time frame "1" gives strange results, and when I try other settings, I end up crashing on that PC as well...
Also, as far as I can see, the default setting is just the same as for the basic channel indicator. What setting am I supposed to use to get, say, the fractals for every 10 candles?
Anyway, even though it's a great indicator, it is not what I'm really looking for, as far as the task at hand goes.
However, I suddenly kinda saw the light and figured out a simplistic way to get what I'm looking for, although it's not yet how the indicator should really be.
What I did is take the following code:
Code:
int start()
{
int D1=1440, H4=240, H1=60, M15=15,B;
double P;
and change it into (for example):
Code:
int start()
{
int D1=480, H4=240, H1=120, M15=60,B;
double P;
= basic fractal multiplied by 2, 4 and 8, which gives fractals for every 5, 10, 20, 40 bars
or
Code:
int start()
{
int D1=252, H4=156, H1=96, M15=60,B;
double P;
= basic fractal as put in a fibonacci sequence, which gives fractals for every 5, 8, 13, 21 bars
See the attached pictures for what this looks like.
But although this little modification is nice to do some backtesting, it only gives the sequences I'm looking for on the 1hr chart (giving the same fractals when viewing a different time frame).
While I could make a seperate version for every time frame, that is definitely not an ideal solution. And I'm not sure yet what the ideal setting should be, as I have to do a lot more backtesting.
So can someone figure out how to program things so that the sequences of the above examples are automatically applied when you change timeframes? (as with the present versions, it's the same fractals that are seen in all timeframes).
It would be even more ideal if it could be possible to freely set the number of bars for every color in the "input" menu, but that is not the first priority.
See the attached modified indicators, for 1hr charts.
We all want to eliminate bad whipsaw trades. Here's a weapon you can add to your arsenal of technical indicators for just that purpose.
The objective of using filters is to separate the desirable signals from the undesirable ones. The practical application of moving averages often involves a tradeoff between the amount of smoothness required and the amount of lag that can be tolerated. Moving averages have this problem because the price data is not stationary and may have different bandwidths over different time intervals.
Various momentum-adaptive filtering techniques have been developed to take advantage of the nonstationary structure of prices. Adaptive filters have also been developed based on price statistics and the cyclic content of the price data. In this article, I will describe a different class of filters that monitors a measure of temporal nonstationarity and alters their bandwidth in response to this measure.
ARE MARKETS FRACTAL?
There is no argument that market prices are fractal. Fractal shapes are self-similar -- that is, a particular fractal has the same roughness and sparseness no matter how closely you view them. For example, if you remove the labels from a five-minute chart, a daily chart, and a weekly chart, you would have difficulty telling them apart. This is the characteristic that makes them fractal. The fractal dimension that describes the sparseness at all magnification levels defines the self-similarity.
...Continued in the October issue of Technical Analysis of STOCKS & COMMODITIES (2005)
And the following:
Quote:
In "FRAMA - Fractal Adaptive Moving Average" article John Ehlers
presents a new method of adaptive smoothing based on assumption that
market prices are fractal. Coding Fractal Adaptive Moving Average (FRAMA)
is relatively straightforward in AmiBroker Formula Language (AFL).
Thanks to its powerful array processing functions FRAMA can be implemented
in AmiBroker without any loops making it extremely fast. Ready-to-use
code is presented in Listing 1. For comparison purposes the code also
plots standard exponential moving average of the same length.
*/
// FRAMA - Fractal Adaptive Moving Average
Price = (H+L)/2;
N = Param( "N", 16, 2, 40, 2 ); // must be even
isnt the problem with fractals the fact that they dont draw soon enough. like if you base your fractal on 5 bar high you will be 3 bars into the move before the fractal is drawn?, or if they're based completly on past movements then they would have to be dynamic to show what theyre meant to show. so are they actually worth using?
isnt the problem with fractals the fact that they dont draw soon enough. like if you base your fractal on 5 bar high you will be 3 bars into the move before the fractal is drawn?, or if they're based completly on past movements then they would have to be dynamic to show what theyre meant to show. so are they actually worth using?
I used those fractals in my real account many years ago and now i am trying to re-mind myself about it because i almost forgot this subject and because there are a lot of new indicators were created. Especially indicators from Igorad.
If I have a time so I will create some trading systems based on it.
But it is necessary for me to read some ebooks/articles first.
does the indicator Ind-Fractals-1 redraw any of its fractals and how long does it take to draw the brown fractals. these seem to show the main trend so taking trades in that direction would be good, but it would need to be established early on.
isnt the problem with fractals the fact that they dont draw soon enough. like if you base your fractal on 5 bar high you will be 3 bars into the move before the fractal is drawn?, or if they're based completly on past movements then they would have to be dynamic to show what theyre meant to show. so are they actually worth using?
Unless you use them as S&R levels. I find the multitime fractles really useful to see where SR levels are on the higher TF.