I'm trying to get the full set of financial data on TradingView, we can get this type of data calling it like that: 'request.financial(syminfo.prefix+":"+syminfo.ticker, "accounts_payable", "FQ")', anyway there is a limit number of calls for this function (40 calls).
Security calls had the same problem in previous versions of pinescript, but now you can get more data on a single request using arrays '[o,h,l,c,h2,h3,h4] = security(syminfo.ticker, timeframe.period, [open,high,low,close,hl2,hlc3,ohlc4])'.
The problem is that request.financial() does not accept array input, so, is there any other workaround of this type to get more than 40 financials?
request.financial() limit workaround (PineScript)
61 Views Asked by Francesco Battisti At
1
There are 1 best solutions below
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 PINE-SCRIPT-V5
- 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?
- 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?
- Is there a way to separate continues plot mark for each candlesticks
- Why if i have continues plot mark the label is only at the first mark
- In Trading view, Trigger alert when inverted hammer/hammer formed at my marked levels
- Series reading becomes na if accessed using getter method?
- strategy.exit() in pinescript doesnt exit on exact price
- PineScript Why the request.securiry() work on D1 and doesnt on lower TF?
Related Questions in TRADINGVIEW-API
- TradingView alerts are not being executed by strategy()
- How to sell at end of candle but buy at open on another in Trading View?
- TradingView widget.getStudyStyles is not a function
- Want to extend FVG to certain time
- how can I plot calculated dynamic levels?
- Is there a way to separate continues plot mark for each candlesticks
- Why if i have continues plot mark the label is only at the first mark
- In Trading view, Trigger alert when inverted hammer/hammer formed at my marked levels
- npm install tulind in my crypto server side
- if..else.. block in PineScript v5 - Why force return type of the "if" block to match the "else" block?
- How do I define the logic behind protected highs and lows?
- I need to have a look at all my private pine scripts and filter the scripts for certain words in TRADINGVIEW
- Android LightWeightChart: Change Half of the chart color grey while Moving on chart with right to left :
- TradingView webhooks to Discord via Alert Message box - embedded URL link incorrect
- Determine the time of indicator triggering for a real-time candle
Related Questions in PINE-SCRIPT-V4
- How to plot horizontal lines for high and low of all weekly candles to be used on 1m and 5m charts
- Is there a way to separate continues plot mark for each candlesticks
- Why if i have continues plot mark the label is only at the first mark
- In Trading view, Trigger alert when inverted hammer/hammer formed at my marked levels
- How import custom indicators blocked source into strategy custom in pineeditor --- tradingview?
- Problem with time 1 minute and request.security
- Write a Box and push in array but dont show
- Deletion of labels not working in Pine script
- How to compare Array Elements by greater than?
- Lines from a date picker
- Trying to plot the highest high when the MACD Histogram lastgreenbar is up and lowest loww hen the MACD histogram last redbar is down
- Cannot modify global variable in function in PineScript
- How can i program 'previous bars open price' to appear in an alert message
- strategy.exit is not being executed in long position while does executed in short position base on the same calculation
- Price if condition is met
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)
Popular # Hahtags
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?
No, there is no workaround for that as of now.
financials()do not support tuples.