NexusFi: Find Your Edge


Home Menu

 





close price of the weekly high candle


Discussion in ThinkOrSwim

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




 
Search this Thread

close price of the weekly high candle

  #1 (permalink)
SKumar
San Francisco
 
Posts: 1 since Jan 2015
Thanks Given: 0
Thanks Received: 0

hello, I am new to thinkscript. I need to find the 30min. candle close price that corresponds to the high of the week. Is there an easy way to find that close price?

Your fast response is highly appreciated

Thanks

SKumar

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
MC PL editor upgrade
MultiCharts
Trade idea based off three indicators.
Traders Hideout
Trend Direction Force Index (TDFI)
Platforms and Indicators
About a successful futures trader who didnt know anythin …
Psychology and Money Management
ZombieSqueeze
Platforms and Indicators
 
  #2 (permalink)
 Dbjergins 
Joaquin Texas
 
Posts: 8 since May 2015

could you please explain what exactly you are looking for and I will do what I can to assist
Regards,
David

Reply With Quote
  #3 (permalink)
 Dbjergins 
Joaquin Texas
 
Posts: 8 since May 2015


Hello my friend I think this is what you are asking for.

declare hide_on_daily;

#Select the Secondary Aggregation for the highest closing you wish to see.
input secondaryPeriod = AggregationPeriod.THIRTY_MIN;
def SecondaryPeriodHighestClose = HighestAll(close(period = secondaryPeriod));
Assert(secondaryPeriod >= GetAggregationPeriod( ), "Seccondary Aggregation cannot be greater than chart Aggregation ");
#This adds it to the price axis on the right
def onExpansion = if IsNaN(close) then yes else no;
plot HighestClose = if onExpansion then SecondaryPeriodHighestClose else double.NaN;

#This adds a chart bubble for the highest closing period you select as Secondary aggregation.
AddChartBubble(close == SecondaryPeriodHighestClose, SecondaryPeriodHighestClose, "Highest " + secondaryPeriod / 60000 + " Minute Close " + SecondaryPeriodHighestClose, Color.BLUE, yes);

copy and paste this and see if this is right. Let me know..

Reply With Quote




Last Updated on June 5, 2015


© 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