Search found 96 matches

Go to advanced search

by Steve Burman
Wed Jan 18, 2023 10:49 am
Forum: Pine Script Q&A
Topic: Hover Value Missing After Label
Replies: 1
Views: 794
 
Jump to post

Re: Hover Value Missing After Label

Is it happening when you hover over the indicator or over an object like a label. Normally it will be a tooltip that is attached to an object such as a label... such as tooltip="This is a tooltip explaining what I'm hovering over!"
by Steve Burman
Wed Jan 18, 2023 10:42 am
Forum: Pine Script Q&A
Topic: How can I detect any change in Linear Regression Candle color from red to green or green to red
Replies: 1
Views: 1146
 
Jump to post

Re: How can I detect any change in Linear Regression Candle color from red to green or green to red

You can use the historical reference for previous bars such as lrcopen[1], lrchigh[1], lrclow[1], lcclose[1] to reference the previous bar values and lrcopen[2], lrchigh[2], lrclow[2], lcclose[2] for the closed bar 2 bars ago.

I hope this helps
by Steve Burman
Wed Jan 18, 2023 10:33 am
Forum: Pine Script Q&A
Topic: Variable-value-in-TV-alert to a webhook
Replies: 4
Views: 1511
 
Jump to post

Re: Variable-value-in-TV-alert to a webhook

You're welcome Luke :wink:
by Steve Burman
Wed Jan 18, 2023 10:32 am
Forum: Pine Script Q&A
Topic: Need help with the error
Replies: 4
Views: 1486
 
Jump to post

Re: Need help with the error

I'm happy to help but I need further info on this. Have you coded the 2 fibo lines? Also in your comment... price to break up/down first before triggering an alert... how many pip or points or how many bars from your fibo lines before the alert is triggered?
by Steve Burman
Wed Jan 18, 2023 8:44 am
Forum: Pine Script Q&A
Topic: mark only one bar when condition occurs
Replies: 1
Views: 837
 
Jump to post

Re: mark only one bar when condition occurs

Can you pls send me the code for both conditions? I'll check it out
by Steve Burman
Wed Jan 18, 2023 7:53 am
Forum: Pine Script Q&A
Topic: Variable-value-in-TV-alert to a webhook
Replies: 4
Views: 1511
 
Jump to post

Re: Variable-value-in-TV-alert to a webhook

Correct, the {{ticker}} only works with alertcondition(). With alert() you can concatenate the message to include the ticker

Go to advanced search