Profile Photo

AI Trading Lab

  • Public Group
  • 1 week, 3 days ago
  • 4

    Posts

  • PineScript for TradingView
    Volume Profile

    // This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/
    // © LuxAlgo
    //@version=5

    indicator(“Volume Profile with Node Detection [LuxAlgo]”, “LuxAlgo – Volume Profile with Node Detection”, overlay…Read More

  • PineScript for TradingView
    HAMA Cloud

    //@version=6
    indicator(‘NSDT HAMA Candles v6 + Trend Cloud’, overlay = true)

    ////////////////////
    // FUNKTSIOONID
    ////////////////////
    f_c_gradientAdvDecPro(_source, _center, _steps, _c_bearWeak, _c_bearStrong, _c_bullWeak, _c_bullStrong) =>
    var float _qtyAdvDec = 0.
    float _maxSteps =…Read More

  • PineScript for TradingView, Multi EMA-s.

    //@version=6
    indicator(“EMA Suite MTF”, overlay=true)

    // ── INPUTS ──────────────────────────────────────────────────────
    g1=”9 EMA”
    e9_on = input.bool(true,”Show”,group=g1)
    e9_w = input.int(2,”Width”,1,5,group=g1)
    e9_up = input.color(#00E5FF,”Bull”,group=g1)
    e9_dn = input.color(#FF1744,…Read More