NexusFi: Find Your Edge


Home Menu

 





Daily SMA on Intraday Charts


Discussion in ThinkOrSwim

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




 
Search this Thread

Daily SMA on Intraday Charts

  #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?
Build trailing stop for micro index(s)
Psychology and Money Management
NexusFi Journal Challenge - April 2024
Feedback and Announcements
ZombieSqueeze
Platforms and Indicators
Ninja Mobile Trader VPS (ninjamobiletrader.com)
Trading Reviews and Vendors
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
60 thanks
Funded Trader platforms
43 thanks
NexusFi site changelog and issues/problem reporting
24 thanks
GFIs1 1 DAX trade per day journal
22 thanks
The Program
19 thanks
  #2 (permalink)
tangerine
albuquerque nm/usa
 
Posts: 29 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


© 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