NexusFi: Find Your Edge


Home Menu

 





Fundamental data


Discussion in EasyLanguage Programming

Updated
    1. trending_up 3,633 views
    2. thumb_up 2 thanks given
    3. group 3 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread

Fundamental data

  #1 (permalink)
soacm
Bucharest, Romania
 
Posts: 71 since Mar 2022
Thanks Given: 38
Thanks Received: 22

Hi everyone, I am trying to create an indicator that uses fundamental data. I used the reserved word GetFundData to indicate Open Interest, what I need to know is the lowest value and the highest value of Open interest based on a look back period which I set in a input LookBack(26). I tried to use the function FundValue but it does not help since I need the lowest value and the highest in that specific look back period. Thank you.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
Quantum physics & Trading dynamics
The Elite Circle
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Cheap historycal L1 data for stocks
Stocks and ETFs
use extra computer for optimisation
NinjaTrader
 
  #2 (permalink)
 bchip 
Torino, Italy
 
Experience: Advanced
Platform: TradeStation
Trading: ES,YM,CL,GC
Posts: 132 since Sep 2017
Thanks Given: 160
Thanks Received: 116


soacm View Post
Hi everyone, I am trying to create an indicator that uses fundamental data. I used the reserved word GetFundData to indicate Open Interest, what I need to know is the lowest value and the highest value of Open interest based on a look back period which I set in a input LookBack(26). I tried to use the function FundValue but it does not help since I need the lowest value and the highest in that specific look back period. Thank you.

Have you tried a loop?

var: k(0), aMin(0), aMax(0), tVal(0);
For k = 1 To LookBack Begin
tVal = GetFundData("open interest", k);
if (tVal < aMin) then aMin = tVal;
if (tVal > aMax) then aMax = tVal;
End;

Reply With Quote
  #3 (permalink)
 
ShadowFox's Avatar
 ShadowFox 
CO/USA
 
Experience: Intermediate
Platform: TradeStation, Multicharts
Trading: Stocks, Futures
Posts: 129 since Jun 2020
Thanks Given: 70
Thanks Received: 157



soacm View Post
Hi everyone, I am trying to create an indicator that uses fundamental data. I used the reserved word GetFundData to indicate Open Interest, what I need to know is the lowest value and the highest value of Open interest based on a look back period which I set in a input LookBack(26). I tried to use the function FundValue but it does not help since I need the lowest value and the highest in that specific look back period. Thank you.

Save the OI into a variable then use highest() and lowest() to find the values you are interested in.

Inputs:
LookBack(26);

Vars:
OI(0),
OIH(0),
OIL(0);

OI = GetFundDataCode;
OIH = highest(OI, LookBack);//highest value in variable over lookback length
OIL = Lowest(OI, LookBack);

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:




Last Updated on April 11, 2022


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts