Search found 96 matches

Go to advanced search

by Steve Burman
Wed Sep 20, 2023 3:15 am
Forum: Pine Script Q&A
Topic: Need help .. rookie here
Replies: 2
Views: 1360
 
Jump to post

Re: Need help .. rookie here

Krish, can you post the strategy and I can see if I can help
by Steve Burman
Wed Sep 20, 2023 2:53 am
Forum: Pine Script Q&A
Topic: Adding a Custom Indicator to a Strategy
Replies: 1
Views: 771
 
Jump to post

Re: Adding a Custom Indicator to a Strategy

You can do this by simply clicking on the Indicators menu at the top of TradingView and choosing My Scripts. You should find your indicator there. Just left click on your indicator and it should be added to your strategy.
by Steve Burman
Wed Sep 20, 2023 2:50 am
Forum: Pine Script Q&A
Topic: Convert Pine script 2 to 5
Replies: 2
Views: 876
 
Jump to post

Re: Convert Pine script 2 to 5

Unfortunately pinescripters.net has lost all indentations
by Steve Burman
Wed Sep 20, 2023 2:49 am
Forum: Pine Script Q&A
Topic: Convert Pine script 2 to 5
Replies: 2
Views: 876
 
Jump to post

Re: Convert Pine script 2 to 5

Here's the V5 version //@version=5 indicator("Trend Signal 2", overlay=true) RISK= input.int(title="RISK", defval=14) value10=3+RISK*2 value11=value10 x1=67+RISK x2=33-RISK Range(length) => var float sum = 0 for i = 1 to length-1 sum := sum + math.abs(high -low ) sum / length MRO1(length, Range) => ...
by Steve Burman
Fri Sep 01, 2023 9:22 am
Forum: Pine Script Q&A
Topic: pineConnector - Stopping trades
Replies: 1
Views: 883
 
Jump to post

Re: pineConnector - Stopping trades

I suggest you have a boolean input named usePineConnector which will display in the settings of your strategy... such as usePineConnector = input.bool(title="Use PineConnector", defval=false, tooltip="Tick to send data to PineConnector and un-tick to not send data to PineConnector") If you wrap the ...
by Steve Burman
Fri Sep 01, 2023 9:10 am
Forum: Pine Script Q&A
Topic: eliminate multiple signals printing
Replies: 3
Views: 1511
 
Jump to post

Re: eliminate multiple signals printing

Jack I need you to send me the imgbox link to the photos
by Steve Burman
Thu Jun 22, 2023 1:08 am
Forum: Pine Script Q&A
Topic: eliminate multiple signals printing
Replies: 3
Views: 1511
 
Jump to post

Re: eliminate multiple signals printing

Hi Jack,

Sorry for the delay. The images you sent are located on your hard drive. Can you pls share them on a file sharing platform such as imgbox.io so I can see what you mean?
by Steve Burman
Wed Jun 07, 2023 11:04 pm
Forum: Pine Script Q&A
Topic: How can I leave a Trailstop with a specific date in each Ticker that applies that indicator?
Replies: 1
Views: 892
 
Jump to post

Re: How can I leave a Trailstop with a specific date in each Ticker that applies that indicator?

Hi, sorry I don't fully understand what you mean by "changes the date in all the tickers that had already been configured in the same indicatorchanges the date in all the tickers that had already been configured in the same indicator". Can you please show me an example so I can visually see it toget...
by Steve Burman
Wed Jun 07, 2023 11:02 pm
Forum: Pine Script Q&A
Topic: Visual order of drawing a box
Replies: 3
Views: 1329
 
Jump to post

Re: Visual order of drawing a box

Hi Rob,

I just looked up all the box attributes and again couldn't find transparency in the language reference. Just out of interest, how are you using it or do I just have blinkers on lol?
by Steve Burman
Tue Jun 06, 2023 11:49 pm
Forum: Pine Script Q&A
Topic: Plot shape and multiple timeframes
Replies: 5
Views: 8263
 
Jump to post

Re: Plot shape and multiple timeframes

Hey Ponderosa, I debugged the script on small timeframe increments between 3 and 30 and found that the plotshapes displayed at 21 minute chart but not a 20 minute chart. It definitely seems like a timing issue. I also found that gaps=barmerge.gaps_on for your security.request statement is displaying...

Go to advanced search