Here is a question many people get wrong.
Who owns the US Federal Reserve?
So who is really responsible for quantitative easing etc?
Re: XARD - Simple Trend Following Trading System
#10892The Federal Reserve is an independent entity established by the Federal Reserve Act of 1913. At that time, President Woodrow Wilson wanted a government-appointed central board, but Congress wanted the Fed to have 12 regional banks to represent America's diverse regions. The compromise meant that the Fed has both. Coincidently, 1913 was the last time that the Dollar was worth one Dollar.
Xard777
Also, this time period (1913) was when US citizens were informed that they would have to start paying taxes to pay for the accumulated interest + debt that would come about from freeing the economy from the gold standard, well, maybe Big government did not put it that way per se :-)))
Xard777
Also, this time period (1913) was when US citizens were informed that they would have to start paying taxes to pay for the accumulated interest + debt that would come about from freeing the economy from the gold standard, well, maybe Big government did not put it that way per se :-)))
XARD: If Carlsberg made charts... Probably the best charts in the world
Re: XARD - Simple Trend Following Trading System
#10893
Hello all ... I may have missed it somewhere in here but would somebody please advise the number of days that are used or the actual method for calculating the ADR in XARD's system. Thanks for any help
XARD: Here you go...
XARD: Here you go...
Code: Select all
ADR1=0; ADR5=0; ADR10=0; ADR20=0; ADRavg=0; int a,b,c; int ypos=0;
ADR1=(iHigh(NULL,PERIOD_D1,1)-iLow(NULL,PERIOD_D1,1));
for(a=1;a<= 5;a++) ADR5= ADR5+(iHigh(NULL,PERIOD_D1,a)-iLow(NULL,PERIOD_D1,a));
for(b=1;b<=10;b++) ADR10=ADR10+(iHigh(NULL,PERIOD_D1,b)-iLow(NULL,PERIOD_D1,b));
for(c=1;c<=20;c++) ADR20=ADR20+(iHigh(NULL,PERIOD_D1,c)-iLow(NULL,PERIOD_D1,c));
ADR5=ADR5/5; ADR10=ADR10/10; ADR20=ADR20/20;
ADRavg=(((ADR1+ADR5+ADR10+ADR20)/4))/Point/pipsize;
Re: XARD - Simple Trend Following Trading System
#10894Don't waste your time!!Yaya20 wrote: ↑Tue Jun 07, 2022 7:08 amDear thread friends
I've tried to find a file that explains entry/exit rules for the system for quite a while..but didn't get anywhere.. so, a few questions :
1. What's the difference between all the systems ? are they built on one another ?
2. Could anyone point out to a post or file with indicator explanations... entry, exit etc..
Really appreciate your time and help !![]()
![]()
There is no system provided here, no exact rules for entry/exit, no rules for avoiding bad trading situation etc.
There are only a bunch of different indicators scrambled together, which only several people know or do not know how to use correctly.
You might try to read this thread several times, end up wasting your time and energy, which I did.
Re: XARD - Simple Trend Following Trading System
#10895If you have read this thread several times and have not found rules for entry etc., the problem is probably not the system.
A system, BTW, based on diagonal/horizontal support and resistance. Anybody else here old enough to remember when support and resistance were considered building blocks of successful trading?
A system, BTW, based on diagonal/horizontal support and resistance. Anybody else here old enough to remember when support and resistance were considered building blocks of successful trading?
Re: XARD - Simple Trend Following Trading System
#10896Any support/resistance can be broken - so called "continuation thinking" is quite dangerous when playing the markets. For me, these kinds of limiting concepts do not exist at all.
The colleague above is somewhat correct in that he didn't get anything out of this subject besides indicators and a general outline of entries - but that was probably the goal.
The system itself is not supposed to tell you when to add to a position, how to manage the size of the position, how to manage your money, when to exit a position at a loss, when to take a day off and not play at all, etc. Trading is not really about finding the perfect entry every time (which is impossible), it is about managing yourself - but most will never understand that.
Personally, I implemented into my way of playing what I found interesting, the rest I discarded. And looking at some screens of the topic creator after some time I came to the conclusion that I have no idea how he makes decisions - my entries earn, but certainly not 200, 300 or 400% a day.
I recommend everyone to read (and listen to) Mark Douglas if anyone here by some miracle hasn't already done so: This video is also worth watching:
The colleague above is somewhat correct in that he didn't get anything out of this subject besides indicators and a general outline of entries - but that was probably the goal.
The system itself is not supposed to tell you when to add to a position, how to manage the size of the position, how to manage your money, when to exit a position at a loss, when to take a day off and not play at all, etc. Trading is not really about finding the perfect entry every time (which is impossible), it is about managing yourself - but most will never understand that.
Personally, I implemented into my way of playing what I found interesting, the rest I discarded. And looking at some screens of the topic creator after some time I came to the conclusion that I have no idea how he makes decisions - my entries earn, but certainly not 200, 300 or 400% a day.
I recommend everyone to read (and listen to) Mark Douglas if anyone here by some miracle hasn't already done so: This video is also worth watching:
Re: XARD - Simple Trend Following Trading System
#10897Thanks for such a prompt reply XARD. I have zero experience with code. Should we treat this as a 5 period ADR? Thanks again
XARD: The Average Daily Range (ADRavg) is calculated from this formula... ADRavg=(((ADR1+ADR5+ADR10+ADR20)/4))
which adds the ADR of Day1 plus ADR of day5 plus the ADR of day10 plus the ADR of day20 altogether, takes that total figure, and divides it by 4 to give us our mean ADRavg for that period.
Use the Range as a Guide for Profit Targets
Using the range as a guide for profit targets will allow you to hold a position and gauge the market’s reaction when it gets there. If it continues, you can hold. And what if it shows signs of exhaustion? You can be sure that the volume for that particular currency/index has dried up at around the usual levels.
This strategy will also allow you to calculate your entries into the market with much more clarity. If you see that the pair/index has already ran most of its range, you might reconsider entering the market at that point, for fear of the market correcting and retracing from the highs / lows. This will also save you from losing trades and pips.
The best way to become comfortable with this concept is to apply it to your charts and practice. (This is true for most trading concepts.) Watch the reactions that occur at these areas when you use them as profit targets. Remember that this should be part of the entry decision process, rather than a simple ‘enter here’ method.
Use the average daily range purely for profit targets. Do not try to cram it into every possible trading scenario.
After a few weeks you will start to see the power and effectiveness of the daily range, but only when used correctly!
XARD: The Average Daily Range (ADRavg) is calculated from this formula... ADRavg=(((ADR1+ADR5+ADR10+ADR20)/4))
which adds the ADR of Day1 plus ADR of day5 plus the ADR of day10 plus the ADR of day20 altogether, takes that total figure, and divides it by 4 to give us our mean ADRavg for that period.
Use the Range as a Guide for Profit Targets
Using the range as a guide for profit targets will allow you to hold a position and gauge the market’s reaction when it gets there. If it continues, you can hold. And what if it shows signs of exhaustion? You can be sure that the volume for that particular currency/index has dried up at around the usual levels.
This strategy will also allow you to calculate your entries into the market with much more clarity. If you see that the pair/index has already ran most of its range, you might reconsider entering the market at that point, for fear of the market correcting and retracing from the highs / lows. This will also save you from losing trades and pips.
The best way to become comfortable with this concept is to apply it to your charts and practice. (This is true for most trading concepts.) Watch the reactions that occur at these areas when you use them as profit targets. Remember that this should be part of the entry decision process, rather than a simple ‘enter here’ method.
Use the average daily range purely for profit targets. Do not try to cram it into every possible trading scenario.
After a few weeks you will start to see the power and effectiveness of the daily range, but only when used correctly!
Re: XARD - Simple Trend Following Trading System
#10898Dear Xard,xard777 wrote: ↑Sun Jun 12, 2022 8:06 amThe Federal Reserve is an independent entity established by the Federal Reserve Act of 1913. At that time, President Woodrow Wilson wanted a government-appointed central board, but Congress wanted the Fed to have 12 regional banks to represent America's diverse regions. The compromise meant that the Fed has both. Coincidently, 1913 was the last time that the Dollar was worth one Dollar.
Xard777
Also, this time period (1913) was when US citizens were informed that they would have to start paying taxes to pay for the accumulated interest + debt that would come about from freeing the economy from the gold standard, well, maybe Big government did not put it that way per se :-)))
Can you add two more spaces for fibo level to your ADR indicator,
I am using the version which is converted into button...
Xard I am confused this indicator shows different levels in two different brokers.
Check below images of today XAUUSD on M5.
Edit: Solution found to use other version which shows same on both brokers... but can you fix calculations for the one I attached
-
- XU-ADR D1 button 1.01.mq4
- (49.56 KiB) Downloaded 108 times
Re: XARD - Simple Trend Following Trading System
#10899Thanks XARD, your explanation here is everything and more than I was hoping for. Thanks againRicstar_8 wrote: ↑Mon Jun 13, 2022 9:08 amThanks for such a prompt reply XARD. I have zero experience with code. Should we treat this as a 5 period ADR? Thanks again
XARD: The Average Daily Range (ADRavg) is calculated from this formula... ADRavg=(((ADR1+ADR5+ADR10+ADR20)/4))
which adds the ADR of Day1 plus ADR of day5 plus the ADR of day10 plus the ADR of day20 altogether, takes that total figure, and divides it by 4 to give us our mean ADRavg for that period.
Use the Range as a Guide for Profit Targets
Using the range as a guide for profit targets will allow you to hold a position and gauge the market’s reaction when it gets there. If it continues, you can hold. And what if it shows signs of exhaustion? You can be sure that the volume for that particular currency/index has dried up at around the usual levels.
This strategy will also allow you to calculate your entries into the market with much more clarity. If you see that the pair/index has already ran most of its range, you might reconsider entering the market at that point, for fear of the market correcting and retracing from the highs / lows. This will also save you from losing trades and pips.
The best way to become comfortable with this concept is to apply it to your charts and practice. (This is true for most trading concepts.) Watch the reactions that occur at these areas when you use them as profit targets. Remember that this should be part of the entry decision process, rather than a simple ‘enter here’ method.
Use the average daily range purely for profit targets. Do not try to cram it into every possible trading scenario.
After a few weeks you will start to see the power and effectiveness of the daily range, but only when used correctly!
Re: XARD - Simple Trend Following Trading System
#10900Another link to news channels... Fox Business, cnbc, bloomberg etc...
http://www.freeintertv.com/
http://www.freeintertv.com/
XARD: If Carlsberg made charts... Probably the best charts in the world
-
Similar Topics
-
Live Trades & Ideas: XARD - Simple Trend Following Trading System
349 Replies 82077 Viewsby LadyAmira, Fri Oct 09, 2020 10:53 pm in Trading Journals
349 Replies
82077 Views -
TREND FOLLOWING SYSTEM USING MLADEN'S AND MRTOOL'S INDICATORS
46 Replies 52250 Viewsby rijay, Sun Feb 25, 2018 9:51 pm in Trading Systems
46 Replies
52250 Views
-
Users viewing this forum: 88FX88, akcodingeye, Castle73, chrisoko, CommonCrawl [Bot], Darkdoji, Filipino_guy, Google [Bot], IBM oBot [Bot], iPar, LorenzoNexus, maura, Mrfash, mrtools, whiteadrian23, Woodyz, xcool, yoki and 40 guests