NexusFi: Find Your Edge


Home Menu

 





Daily SMA on Intraday Charts


Discussion in ThinkOrSwim

Updated
    1. trending_up 4,530 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?
Sundays Verdict: Lebanon Locked at 99.85% as Iran June 7 …
Prediction Markets & Event Contracts
June 15 Peace Odds Surge From 3.6% to 12.25% After Trump …
Prediction Markets & Event Contracts
CPI Eve: Fed Hike Odds Hold at 52% for the First Time, I …
Prediction Markets & Event Contracts
CFTC Approves First US Bitcoin Perpetual Futures -- Kals …
Traders Hideout
Trump Media to sell instant access to market-moving soci …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
13 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 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