
pine script - End of Line without line continuation - PineScript ...
Jan 30, 2025 · End of Line without line continuation - PineScript Asked 11 months ago Modified 11 months ago Viewed 314 times
pine script - Pinescript input line style - Stack Overflow
Jun 16, 2025 · I am new to pinescript and wrote this simple script to show me daily, weekly and monthly candle open lines by piecing together information I could find. This works well but I would like to add …
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...
I want to make a PineScript V5 Strategy with ADX and RSI But keep ...
Mar 23, 2023 · It just seems that I can't figure out the correct script for my strategy, which is the following: Buy signal when the ADX is above 46 and at the same time the RSI is oversold at or below …
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?
Pine Script V5 - displaying results of a formula as text
Feb 16, 2022 · I am extremely new to Pinescript and writing my first indicator. As I scalp on a low timeframe I figured it would be a good idea to display profit targets, stop loss, and order volume in …
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 …
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_open ...
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
pine script - How do I plot a horizontal line on the high and low of a ...
Mar 24, 2022 · How do I plot a horizontal line on the high and low of a specific time in Pinescript? Asked 3 years, 9 months ago Modified 2 years, 6 months ago Viewed 23k times