Page 1 of 1

Can I use private indicator's signals in Strategy Tester?

Posted: Tue May 17, 2022 5:39 pm
by RadicalActivity
I have a private indicator that gives me buy/sell signals. Is it possible to use the indicator's buy/sell signals as points of trade entry with Pinescript to create a Strategy Tester?

I was looking at this, but not quite sure if this is the right way to import my indicator.

Code: Select all

signalFromStudy = input(close, "Input", input.source)
Also, unsure of how to access the buy/sell value. Is this even possible?

Re: Can I use private indicator's signals in Strategy Tester?

Posted: Sun Feb 05, 2023 10:04 am
by processingclouds
Hey,

You will have to convert it to a strategy, you cannot use one indicator with another, or one indicator with a strategy that are seperate codes.