Hello traders. I am kinda new with forex. Still studying baby pips and have watched some YT. I tried backtesting GBPUSD with a plan I come up with which I though not really that promising because of some flaw in it. I am backtesting with 200 USD just to make sure that the system works, and when I start with a live account I can re-create the plan with 200 USD and start compounding. This is my plan for now:
1 hr chart
Aroon Up/down
ATR 14, for SL and lot size
2% risk per trade
2 trade (1 with 1:1 RR, 1 w/o TP but close when Aroon crossed)
Let the trade (1:1 RR) run until it hits SL or TP
If the trade (1:1 RR) hit TP, the trade w/o tp should close on the next Aroon cross
Risk management need more evaluation, seems dangerous
need better exit indicator
Need trailing SL to lock profits
If the distance between both EMA is small, it tends to lose
If some of the previous bars (candlestick) are small, it tends to lose
need to consider the spreads
when balance reached 1000 USD, it is harder to grow, bigger losses
Lot sizes also killing the account
need to cut unnecessary losses, filter "flat" charts
need forward testing
Any advice on how to filter out the “flat charts” early? Most of the time these charts are the culprit to my losses. Or any other advice that I may need to know? Thank you
I'll preface this with I have done OOP all my professional and amateur career (save for the one semester of BASIC I took in high school) and I'm still having issues understanding macros and the best way to use them. That said, I'm writing a library to use for technical analysis on stocks/forex/futures/etc and am getting to the Aroon indicator. Basically the calculation is the same except for looking for a high for one part and then the low for the other part. Below is my naive first pass at solving the problem:
def aroon_up(prices) do number_of_periods = prices |> Enum.count corrected_prices = prices |> Enum.reverse high_period = calc_high(prices, 0, 0) (number_of_periods - high_period) / (number_of_periods * 100) end defp calc_high(prices, high, count) do case prices do [hd | tl] when hd > high -> calc_high(tl, hd, count + 1) [hd | tl] -> calc_high(tl, high, count + 1) [hd] when hd > high -> count _ -> count end end def aroon_down(prices) do number_of_periods = prices |> Enum.count corrected_prices = prices |> Enum.reverse low_period = calc_low(prices, nil, 0) (number_of_periods - low_period) / (number_of_periods * 100) end defp calc_low(prices, low, count) do case prices do [hd | tl] when low == nil -> calc_low(tl, hd, count + 1) [hd | tl] when hd < low -> calc_low(tl, hd, count + 1) [hd | tl] -> calc_low(tl, low, count + 1) [hd] when low == nil -> count [hd] when hd < low -> count _ -> count end end
You'll notice there is a lot of repeating code. I'd love to be able to generate the base of the code from a macro but I'm stumped on how to do this without basically writing a bunch of case statements. Is this a valid use case for macros here or am I just over thinking the problem?
Aroon indicator is an unusual indicator that can help you spot the strength of a trend and ride that trend until a buy or sell climax is reached. We like how versatile the Aroon Up and down indicator is. The triangular Aroon oscillator lines make it so much easier for the untrained eye to spot buy and sell signals. The Aroon indicator was d eveloped by Tushar Chande in 1995, and is an indicator based trading system that determines whether a trading instrument is trending or not and how strong the trend is.As conceived by the creator, Aroon had to determine points for entering trades before other indicators and inform traders about this. If Aroon Up intersects the Aroon Down line from top to bottom, this is a signal to exit the purchase (Forex trading). On the contrary, intersection of the Aroon Up line by the Aroon Down line from top to bottom indicates the emergence and possible development of a down trend and the possibility of opening a sell position. The Aroon’s Formula. Unlike moving average systems which use real price changes, the Aroon uses the time differences of the last high and last low as its basis.. This means the detector reacts when the price is consistently making new highs or new lows. This makes it a very useful system for momentum trading. The Aroon indicator indicates if a price is trending or is in a trading range and reveals the beginning of a new trend, its strength and can help anticipate changes from trading ranges to trends. AroonDown and the AroonUp indicators are used together called the Aroon indicator.
Aroon Indicator Trading Strategy # King trader - YouTube
Aroon roughly translates to "Dawn's Early Light," which tells you everything you need to know about the purpose of this indicator. Learn why it was created and how it can function in your trading ... Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube. This Aroon indicator trading strategy for forex, stocks and e-minis contradicts traditional teachings, but can get you better results. http://www.topdogtradi... ForexMT4Indicators.com are a compilation of free download of forex strategies, forex systems, forex mt4 indicators, forex mt5 indicators, technical analysis and fundamental analysis in forex trading. Forex Trading Strategy With Aroon Indicator very simplify In this video you will learn how to trade with Aroon indicator and be successful with it! Aroon i...