NexusFi: Find Your Edge


Home Menu

 





TOS 21 Mav base pattern


Discussion in ThinkOrSwim

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




 
Search this Thread

TOS 21 Mav base pattern

  #1 (permalink)
nthurau
Brooklyn, NY
 
Posts: 3 since Apr 2020
Thanks Given: 0
Thanks Received: 1

Hi, I'm trying to figure out a code for the TOS platform. I want to find stocks that have touched the 21 ExpMav for a minimum of 3 days in a row, with the daily bars having a similar price range forming a base pattern. Can anyone possibly help me with this?

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
Increase in trading performance by 75%
The Elite Circle
ZombieSqueeze
Platforms and Indicators
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
GFIs1 1 DAX trade per day journal
16 thanks
My NQ Trading Journal
14 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
13 thanks
  #2 (permalink)
Snaggs34
St. Louis, MO
 
Posts: 2 since Aug 2016
Thanks Given: 0
Thanks Received: 0

Try this:

declare lower;

Input Length = 21;

def avg = ExpAverage(Close, Length);
def count = if high > avg and low < avg then count[1] + 1 else 0;
plot base = count >= 3;

Simplified from original.

Reply With Quote
  #3 (permalink)
nthurau
Brooklyn, NY
 
Posts: 3 since Apr 2020
Thanks Given: 0
Thanks Received: 1


Thanks Snaggs!

Greatly appreciate the help

Reply With Quote
  #4 (permalink)
Snaggs34
St. Louis, MO
 
Posts: 2 since Aug 2016
Thanks Given: 0
Thanks Received: 0

A different version if you want an arrow on the chart. Still works with a scanner.

# Find where the moving average is between the high and low for n bars
Input Length = 21;

def avg = ExpAverage(Close, Length);
def count = if high > avg and low < avg then count[1] + 1 else 0;

plot base = count >= 3;
base.setPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);



For scanner setup (if study is called BasingStocks):

BasingStocks() is true

Reply With Quote




Last Updated on May 4, 2020


© 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