About 3,340,000 results
Open links in new tab
  1. pine script - End of Line without line continuation - PineScript ...

    Jan 30, 2025 · End of Line without line continuation - PineScript Asked 10 months ago Modified 10 months ago Viewed 301 times

  2. Limit output in pine script, solutions? - Stack Overflow

    Mar 2, 2023 · I created an indicator in pinescript, the indicator is quite complex. Unfortunately I've reached the limit of 64 outputs, but I really need to add the ability for the user to change color to a plot...

  3. Heikin Ashi candle code in pine script V5 - Stack Overflow

    May 27, 2023 · In pinescript version 4, the Heikin Ashi candle open is calculated as: ha_close = (open + high + low + close)/4 ha_open = na (ha_open [1]) ? (open + close)/2 : (ha ...

  4. Pinescript: Use text variable in Alerts - Stack Overflow

    Jan 21, 2021 · Pinescript: Use text variable in Alerts Asked 4 years, 11 months ago Modified 1 year, 9 months ago Viewed 5k times

  5. pine script - Pinescript line extend - Stack Overflow

    Jul 22, 2022 · Trying to draw Bull/bear flags and make the lines extend as long as the price is still within the top and bottom lines. The problem is if the future prices comes back into where the flag lines woul...

  6. TradingView. Pine-Script: Plotshape, using location.absolute and a ...

    Sep 8, 2020 · In the TradingView PineScript programming language, the Plotshape command format is: plotshape (series, title, style, location, .... Where "Series is treated as a series of boolean values for …

  7. How to get timestamp in Pine script? - Stack Overflow

    Nov 16, 2021 · Does this answer your question? Pinescript - How to pass current date in timestamp?

  8. Draw rectange box with vertical time interval - Stack Overflow

    Jul 12, 2022 · How to draw rectangle with timeframe interval in pinescript? Besides that, I have issue construct the vertical line, which sometime the vertical line will be compress all the price's height into …

  9. How to calculate the ATR like in Pine Script - Stack Overflow

    Apr 2, 2019 · I need to calculate the ATR the same way as in Pine Script, the trading view code. I'm talking about the Average True Range indicator in technical analysis for stocks or FX. In the …

  10. PineScript - Is possible to put a comment with a variable inside?

    Nov 16, 2021 · PineScript - Is possible to put a comment with a variable inside? Asked 4 years, 1 month ago Modified 3 years, 10 months ago Viewed 1k times