I've written a couple of strategies that are profitable, but I was wondering if anyone has found a way to use that logic as a screener? That is, regardless of symbol/ticker, just have it search either ALL symbols or a watchlist of symbols to seek out opportunities that match the "buy" criteria in the script?
Pine Script Strategies - Looking Forward - Using as a Screener
419 views Asked by TheHellYouSay At
1
There are 1 answers
Related Questions in PINE-SCRIPT
- Calculation of volumes inside a candle
- How to get last_bar_index on bar_index == 0
- TradingView alerts are not being executed by strategy()
- the lowest low of some days
- How to sell at end of candle but buy at open on another in Trading View?
- is this User Defined Function using more memory/computing in PineScript v5?
- Pine Script: Loop Through Input Price levels & set Alerts for Each Price
- Pine v5 How to Delete Certain Labels?
- Working with various timeframe inside script irrespective of timeframe selected in charts
- Using Timeframe parameters Pinescript indicator
- How to plot horizontal lines for high and low of all weekly candles to be used on 1m and 5m charts
- Could not find function or function reference 'ta.adx'
- Want to extend FVG to certain time
- else if structure does not return true when it should
- how can I plot calculated dynamic levels?
Related Questions in TESTING-STRATEGIES
- Will strategies close intrabar when a condition has been met?
- Pine script runs long strategy but not the corresponding short strategy on tester
- strategy.close_all stop loss calculation
- Pinescript //@version=5, trying to combine 2 EMAs and PSAR and add buy/sell signals
- Pine Script Strategies - Looking Forward - Using as a Screener
- Why does my (long only) strategy also opens short trades?
- how to create test strategy for additional functionalities which are not mentioned in requirement?
- Testing of spring batch job causes unexpected results
- What should I specifically test at cloud storage based mobile applications?
- Difficulty Approaching Test Driven Development in AngularJS using Jasmine and Karma
- Best practive for finding unit-tests? (if not developing test-first)
- bollinger bands in R
- What is best testing strategy and tool for a GWT project
- Using Capistrano to deploy rails app in remote DreamHost testing/sandbox server
- How do you unit test a class that's meant to talk to data?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You are looking for the
request.security()function. Not only you can request data from different time frames but you can also request data from different ticker ids. However, maximum number of security calls you can have in your script is 40. So, it will be a screener with some limits.See this for more.