Tracking orders per direction

Achiii800

New member
Basically, I want to count the 'number of active 'entries'.

Suppose, we had a condition for going long and short as:

def buy = condition1;
def sell = condition2;

Every time 'buy' is true, I want to add 1, starting from 1.
Every time 'sell' is true, I want to subtract 1, starting from -1.

Note: I don't want it to be a cumulative of all, just the active orders.

Ex1:
buy, buy, sell, sell, sell
should return the following values:
1,2,-1,-2,-3

Ex2:
buy, NaN, NaN, sell, NaN
1,0,0,-1,0

Seems pretty simple, but I wasn't able to crack it. I tried using the CompoundValue() function, but pretty lost.

Would love some help on this!

Thanks in advance.
 
@Achiii800 you can try this: adjust the time for your tradign hours, default is regular trading hours. Also change the BUY and SELL to meet your condition.


Code:
##By XeoNoX via usethinkscript.com

def buy = MovAvgExponential("length" = 50)."AvgExp" crosses above MovAvgExponential("length" = 200)."AvgExp";

def sell = -MovAvgExponential("length" = 50)."AvgExp" crosses below MovAvgExponential("length" = 200)."AvgExp";

input startTime = 0930;

input endTime = 1600;

def Active = SecondsFromTime(startTime) >= 0 and SecondsTillTime(endTime) >= 0;

def var = if buy then +1 else if sell then -1 else Double.NaN;

def cumulative = if Active and !Active[1] then var else if Active then cumulative[1] + var else cumulative[1];

def count  = cumulative;

def OpenPositionTrue = if GetQuantity() > 0 or if GetQuantity() < 0 then count else 0;

plot scan = OpenPositionTrue;
 

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
509 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top