Uwen FX: UWEN StrategyThis Pine Script defines a trading indicator called "Uwen FX: UWEN Strategy" Where ideas coming from Arab Syaukani and modified by Fiki Hafana. It combines a CCI-based T3 Smoothed Indicator with a MACD overlay. Here's a breakdown of what it does:
Key Components of the Script:
1. CCI (Commodity Channel Index) with T3 Smoothing
Uses a T3 smoothing algorithm on the CCI to generate a smoother momentum signal. The smoothing formula is applied iteratively using weighted averages. The final result (xccir) is plotted as a histogram, colored green for bullish signals and red for bearish signals.
2. MACD (Moving Average Convergence Divergence)
The MACD is scaled to match the range of the smoothed CCI for better visualization. Signal Line and MACD Line are plotted if showMACD is enabled. The normalization ensures that MACD values align with the CCI-based indicator.
3. Bar Coloring for Trend Indication
Green bars indicate a positive trend (pos = 1).
Red bars indicate a negative trend (pos = -1).
Blue bars appear when the trend is neutral.
How It Can Be Used:
Buy Signal: When the xccir (smoothed CCI) turns green, indicating bullish momentum.
Sell Signal: When xccir turns red, indicating bearish momentum.
MACD Confirmation: Helps confirm the trend direction by aligning with xccir.
I will add more interesting features if this indicator seems profitable
Scalpers
John Carter's Buy/Sell Scalper V2After a couple adjustments, double signals are now being ignore.
Here's how this script works:
Based entirely on a John Carter scalping setup, a candle will be painted purple if the next two closes are in a opposite direction of the past trend.
Green triangles indicates that the reversal is bullish, red triangles indicates that the reversal is bearish. Both are entry/exit points if you want to follow this set up.
Personally, I find this setup to work best in trending days, but it does a great job on choppy days if you use it as a confirmation.
John Carter's Buy/Sell Scalper (with alert)Basic indicator with signals. Con: Presents multiple signals in the same direction (should be ignored, according with the strategy).