NexusFi: Find Your Edge


Home Menu

 





Daily SMA on Intraday Charts


Discussion in ThinkOrSwim

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




 
Search this Thread
  #1 (permalink)
greysqurel
Louisville + KY/USA
 
Posts: 1 since Sep 2015
Thanks Given: 0
Thanks Received: 0

I need some help finding a study that will allow me to display daily SMAs on intraday charts.

Thanks!


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Hormuz Surges From 14% to 26.5% Intraday as Irans Answer …
Prediction Markets & Event Contracts
After $87M Settles NO: Irans Nuclear Redline Sets Up the …
Prediction Markets & Event Contracts
One Wallet Made $200K in Hours: AP Probes Polymarket Cea …
Prediction Markets & Event Contracts
Iran Lebanon Problem Kills Switzerland Talks, Brent at $ …
Prediction Markets & Event Contracts
CFTC Workforce Shrinks 24% to 15-Year Low While Predicti …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
205 thanks
Sober Journey With S&P
21 thanks
30 Sessions
20 thanks
Volume Indicators
8 thanks
Thanks Mike. Godspeed.
7 thanks
  #2 (permalink)
tangerine
albuquerque nm/usa
 
Posts: 27 since Aug 2015
Thanks Given: 3
Thanks Received: 9


greysqurel View Post
I need some help finding a study that will allow me to display daily SMAs on intraday charts.
Thanks!

One approach is this:
 
Code
def todayclose = close(period = AggregationPeriod.DAY);
input span = 12;
plot todaycloseAVG = average(todayclose,span);
You can then modify your MA length by right-clicking on its plot on your charting screen and choose EDIT. Does this help?
Oh, before you ask, if you want more than one Daily MA, use this:
 
Code
def todayclose = close(period = AggregationPeriod.DAY);
input span1 = 12;
input span2 = 5;
plot todaycloseAVG = average(todayclose,span1);
plot todaycloseAVG2 = average(todayclose,span2);
etc, etc, for each add'l avg adding a number to span and todaycloseavg to identify them (or giving each a new name) so you can find them on the chart's edit panel. AND, getting a little fancier, you might want to be able to set the PRICE you're using (HLC avg, or HIGH, etc) directly from chart edit panel:
 
Code
input price = close;
def todayclose = close(period = AggregationPeriod.DAY);
input span1 = 12;
input span2 = 5;
plot todaycloseAVG = average(todayclose,span1);
plot todaycloseAVG2 = average(todayclose,span2);


Reply With Quote
  #3 (permalink)
jjjann
Bangkok
 
Posts: 5 since Jan 2016
Thanks Given: 0
Thanks Received: 1


input price = close;
input displace = 0;
input length = 21;
input period = AggregationPeriod.FIFTEEN_MIN;
input averageType = AverageType.Simple;

plot MA = MovingAverage(averageType, close(period = period) [-displace], length = length);


Reply With Quote




Last Updated on January 20, 2016


© 2026 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 - Downloads - Top
no new posts