Up Down Alerts with MA Control - v2.0this update is meant for use with regular candles, but it will mimic the color pattern of heikin ashi candles and allow alerts based on the heikin ashi patterns. Also there are alerts for when the price is above a set moving average.
was going to just update the original script but there are a lot of changes to make it smoother etc, original script:
Heikinashi
IO_Heikin-Ashi OverlayThis is Traditional Heikin-Ashi bars overlayed with regular candlestick/any chart type
Although HA is available in TradingView by default, this script is to recalculate HA by traditional calculations.
This version REPAINTS!! This is because Traditional HA uses Close Price (which is calculated on the fly).
-- Invsto
Up Down Strategy with MA Controla simple up down candle strategy with a built in MA control
alerts script:
Kozlod - Heikin-Ashi Bar Color Change StrategyYou can use this script to backtest Heikin-Ashi bar color change strategy.
You have to apply this script to usual candles and not Heikin-Ashi!!!
Background color indicates HA bar color. On change you'll see green/red arrows and alert will be fired.
Also you can find in the code calculations of all HA OHLC values.
MA Ribbon HA* Inspired by Krypt's and Madrid's Ribbon
* Supplemental to bullish or bearish trend confirmations with Heikin Ashi candles (e.g. 10/20 MA cross)
* Default of: MA 5-55, 100 and 200
* Ability to switch between Simple vs Exponential MAs
You may switch color gradient by using this tool,
www.perbang.dk
Hope this helps. Please do let me know if you know how to script the wishlist below =)
Thanks!
---
Wishlist/to do next:
1. Be able to do this color change on counter-trend by implementing this script from Madrid's:
leadMAColor = change(ma05)>=0 and ma05>ma100 ? lime
: change(ma05)<0 and ma05>ma100 ? maroon
: change(ma05)<=0 and ma05=0 and ma05
change(ma)>=0 and ma05>maRef ? lime
: change(ma)<0 and ma05>maRef ? maroon
: change(ma)<=0 and ma05=0 and ma05
na(src ) ? na : src
...
price = dropn(src, dropCandles)
3. Be able to update line thickness of E/MA 10 & 20, as well as their colors.
4. A way to input two HEX colors and automatically update the ribbon lines to have those color gradient.
MA Cross 10/20This was originally derived from "MA Cross" indicator, though that one uses 9-21.
Simple 10day and 20day MA crossover indicator
* 10MA crosses from the bottom, goes up and above 20MA—we're bullish, look to long bullish signal candle
* 10MA crosses from the top, goes down and below 20MA—we're bearish, look to short bearish signal candle
Works well w/ Heikin Ashi candles
Kozlod - Heikin-Ashi Bar Color Change AlertsYou can use this script to setup alerts on Heikin-Ashi bar color change.
You have to apply this script to usual candles and not Heikin-Ashi!!!
Background color indicates HA bar color. On change you'll see green/red arrows and alert will be fired.
Also you can find in the code calculations of all HA OHLC values.
Heikin-Ashi Candles (by Ethrex)Allows to see how Heikin-Ashi candles are computed and see the bars side-by-side with normal prices.
quit your bullshit! Heikin-Ashi Backtest with Real Candle ValuesMade in a few minutes to debunk all the bullshit going around tradingview and everywhere about "heikin-ashi" being a holy grail trend indicator.
Do not be deceived.
Heikin-Ashi is a beautiful way to remove much of the noise in markets, and is light on the eyes. (nice and smooth!)
I personally use heikin-ashi as a way to remove a lot of the clutter in the markets, allowing me to trade with less emotion.
While heikin-ashi is a great way to visualize trends, it is NOT a good trend indicator because its displayed values do not align with actual trading values.
Therefore, entry and exit points for many of the ideas published about heikin-ashi for trade are inaccurate.
::: When Heikin-Ashi changes colour for x candles, a new trade is created on the open of the following real candle.
In practice, Heikin-Ashi is much closer to break even.
As tested, Heikin-Ashi trend trading works better on pairs that have clearer definitions of trends and are less often in consolidation. (ex. USDJPY)
Usage:
Switch to normal candlestick chart.
Features:
Change the period for new trades. (For example: x amount of red candles after a green candle to signify short trade)
HEIKIN ASHI BARSSimple Heikin Ashi candlebars
Please consider a tip if you find this useful
BTC: 3FiBnveHo3YW6DSiPEmoCFCyCnsrWS3JBR
ETH: 0xac290B4A721f5ef75b0971F1102e01E1942A4578
Heikin Ashi Smoothed (yasinipek) by KIVANC fr3762Heikin Ashi Smoothed Strategy
A trend trading forex system composed of the Smoothed Heiken Ashi candlestick indicator and moving averages. It works best on the 1 hour charts and higher time frames.
buy when blue line crosses above red
conversely sell when red line crosses above blue
Author: Yasin İpek @yasinipek83 on twitter / www.yasinipek.com & KıvanÇ @fr3762 on twitter (tweets are only in TURKISH)
Trend following with HAThis is my first script and it is basically a MA crossover/under strategy that uses heikin ashi closing prices. I've also used limit orders based on HA opening prices of the previous day for entry which improves the performance. However, this impose a restriction when prices are moving too fast and the algo is unable to enter the trade, resulting in a bad position for a long period, which I believe is preventing this strategy from performing better. Will appreciate any comments/ suggestions to improve this (such as enter market prices the next day when failed to enter on HA price - not sure if this is possible) as I'm still starting out and will be more than happy to learn from the community here. Cheers!