Reap Hull SMA CrossoverHi this is my first script, it is a HMA 144 crossover with SMA 5 changes background (still needs work), provides alerts for crossover
船體移動平均線(HMA)
Hull Guppy Multiple Moving Average 名前のとおり
GMMAの説明は自分でお探しくだいさい
As the name implies
Please explain GMMA by yourself
Traders Dynamic Index OverlaySettings I found of moving averages to correlate the best with Traders Dynamic Index all in one overlay indicator.
Using KK_Traders Dynamic Index_Bar Highlighting which is the closest to Traders Dynamic Index Pro on MT4, I set the best alignment to Traders Dynamic Index with potential target price points as an overlay indicator representing Traders Dynamic Index components and a level as moving averages on price chart.
Phaser is simply an in-between so as to represent 68, 32 level line or Volatility Band on occasions. Phaser, as in phase changing; shifting direction.
Especially for those who do not have TV PRO.
______________
El Índice Dinámico de Comerciantes encimadas a gráficas de precio.
En especial para quienes solo pueden usar 3 indicadores.
_____________
BTCbotLooks at more than just the BTC price, based off Hull MA
Attempt at reducing repaint by Averaging each candles Open-High-Low-Close and then using previous (not current) candle to calculate signal
Kozlod - 3MA strategy with SL/PT (7 MA types)Classic 3 MA strategy.
Long - Short MA crossover Medium MA and cross is above Long MA
Short - Short MA crossunder Medium MA and cross is below Long MA
You can choose one of these MA types in params:
Simple Moving Average ( SMA )
Exponential Moving Average ( EMA )
Weighted Moving Average ( WMA )
Hull Moving Average ( HMA )
Volume-weighted Moving Average ( VWMA )
Smoothed Moving Average ( SMMA )
Double Exponential Moving Average ( DEMA )
You can select SL/PT % levels.
Renko Strategy Overlay for moving averages back testingThis puts a Renko overlay on the main chart, and then plots moving average lines on the overlaid Renko Candles instead of the regular candles. This allows for accurate backtesting of Renko strategies.
TEMA/hullMA Ribbon with Bollinger BandsDesigned for shorted time frames.
Bollinger bands based off of TEMA as source.
Ribbon based off TEMA and hullMA divergence.
RMA used to signal Bollinger bands.
Ribbon:
pinch -> reversal
blue -> sign of possible uptrend
red -> sign of possible downtrend
Bollinger bands background:
blue -> sign of continuing uptrend
red -> sign of continuing downtrend
Hull Moving Average + Bollinger BandsThis study make use of Hull Moving Average and Bollinger Bands.
The crosses give signal about HMA and BB crossovers, they are a bit lagging, if you stare well you will spot them a little earlier. It look like a good idea to buy and sell when HMA is near or on the outside of the outer bands.
By default the Bollinger Bands uses Simple Moving Average with 21 periodes, and Hull Moving Average use 9 periodes. You can alter the settings in the format dialog.
Please use as pleased, and if you do something clever with it I'll be happy to know :D
HMA_PPT StrategyHMA_X & Pivot Profit Taker combo
LOL!
change the settings to suit your favorite pair/TF before cry yourself to sleep.
doesnt repaint? ----> YOU TELL ME :-D
Strawberry Trends (Cycles) 🍓A slightly modified Schaff Trend Cycle-like indicator that detects trends before standard MACD and STC. High values (near 100) indicate imminent break down, whereas low values (near 0) indicate imminent movement upwards. This should be used for coins/symbols that are currently cycling. You'll want to experiment with different time intervals (15/30/60 min charts) to get the best results for a specific currency.
Also strawberries.
Only tested on crypto.
HullYeahBoiUses a 9 period Hull Moving Average and provides the option to set up an alert each time the trend changes direction.
Hull MACD with Force Index Backcolorswww.tradingview.com
Like many other indicators this tells the past and it will dutifully follow the future price changes whatever they will be.
This is an upgrade of the "Hull Moving Average Convergence/Divergence" low lag indicator in my scripts. Added Elder Force Index (background colors) to include effects of Volume.
When EFI goes positive the background goes green, when it slopes up (more positive than previous bar) it is darker green. Negative red and slope down darker red.
I find it useful in all time frames but I use mostly hour and day. The direction color combined with price action and macd tell whether the volume supports the price movement and the shading (darker green for increasing up volume and darker red for increasing down volume) tells of the degree of support.
Since when the EFI is positive and dropping, for example, the price can be dropping with opposite for negative.
Dark shading tells where the EFI and possibly the price is headed (at the moment).
Light shading says to check more on other indications for likely direction.
Changed also the histogram color so it stands out of background and added hlines to make relative volatility and peak height easier to see.
Anyway help yourself if any of this code is useful to you, enjoy, happy trading and Keep Smiling!
[BullTrading] 1 minute Easy Scalping Sys v3.0This is the third version of Bull Trading Easy Scalping Tool for 1 minute charts. This improved code filters trend direction and power to avoid some false entries on horizontal markets. Exits after profit are commonly taken when the price hits the ma's.
DISCLAIMER:
The Following indicator/code IS EXPERIMENTAL AND NOT intended to be a formal investment advice or recommendation by the author, nor should be construed as such. Users will be fully responsible by their use regarding their own trading vehicles/assets.
HullMA cross StrategyFrom Indicator420 by SeaSide420 HULL MOVING AVERAGE CROSS & CANDLE CROSS
Hull Moving Average (HMA) formula
Integer(SquareRoot(Period)) WMA (2 x Integer(Period/2) WMA(Price) - Period WMA(Price))
Solving the problem of lag requires an explanation with numbers rather than charts. Consider a series of 10 numbers from '0' to '9' inclusive and imagine that they are successive price points on a chart with 9 being the most recent price point at the right hand leading edge.
If we take the 10 period simple average of these numbers then, not surprisingly, we will determine the midpoint of 4.5 which significantly lags behind the most recent price point of 9. Here's the clever bit, first let's halve the period of the average to 5 and apply it to the most recent numbers of 5, 6, 7, 8 and 9, the result being the midpoint of 7.
To remove the lag we take the midpoint of 7 and add the difference between the two averages which equals 2.5 (7 - 4.5). This gives a final answer of 9.5 (7 + 2.5) which is a slight overcompensation. But this overcompensation is very handy because it offsets the lagging effect of the nested averaging.
Hence the result of combining these 2 techniques is a near perfect balance between lag reduction and curve smoothing. The HMA manages to keep up with rapid changes in price activity whilst having superior smoothing over an SMA of the same period.
The HMA employs weighted moving averages and dampens the smoothing effect (and resulting lag) by using the square root of the period instead of the actual period itself.
There are 3 HullMAs in the script, one runs on current price, and others on previous candle prices, when they cross over, is the entry signal.
The strategy also includes a candle cross condition for entry:
(if current price greater than previous candle value (Open+High+Low+Close)/4) then BUY
(if current price less than previous candle value (Open+High+Low+Close)/4) then SELL
in total 4 crossover conditions must be met to initiate a signal.