NexusFi: Find Your Edge


Home Menu

 





Daily SMA on Intraday Charts


Discussion in ThinkOrSwim

Updated
    1. trending_up 4,557 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?
Czechia Live at 52.5% as England Rides 4-2 Wave to Co-Fa …
Prediction Markets & Event Contracts
No book, only a stair: journaling fills where price move …
Cryptocurrency
Trump Media to sell instant access to market-moving soci …
Traders Hideout
Trump Truth Social Fires Hormuz From 10% to 59% -- Arsen …
Prediction Markets & Event Contracts
Four New E-mini Futures Launch June 29 -- Russell 3000, …
Emini and Emicro Index
 
  #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