Skip to main content

ShadowTrader FUTURES & FOREX
TICK SIZES AND VALUE thinkScript

 

 

Your thinkscript is below in the blue box.  Watch the video at right for detailed instructions on how to install and customize the Futures and Forex Tick Size and Value thinkscript on your thinkorswim platform.  ——–>

Have questions on install or usage?
Email Blake Young at: fxtrader@shadowtrader.net

If you have any issues copying the code from the box below, ShadowTrader recommends trying it from a different browser.

If you cannot resolve your issue, please contact support@shadowtrader.net


Statement of Rights and Responsibilities and Non-distribution
This Statement of Rights and Responsibilities (“Statement,” “Terms,” or “SRR”) derives from ShadowTrader’s terms of service that governs our relationship with users and others who interact with ShadowTrader brands, products and services, which we call the ShadowTrader Services or “Services”. By using or accessing the ShadowTrader Services, you agree to this Statement, as updated from time to time in accordance with the ShadowTrader Terms and Conditions and Statement of Rights and Responsibilities. License of the ShadowTrader code: This work is copyrighted by ShadowTrader and all rights of this work under the license are reserved. Use of the ShadowTrader licensed code is for private use only and any other use are prohibited. By exercising any of the rights herein, you are accepting the terms of this license. You have a non-exclusive right to use or alter the ShadowTrader code. Use of this Work other than as provided for in this license is prohibited. Any redistribution is strictly prohibited and will be enforced.
#ShadowTrader Futures and Forex Tick Sizes and Values
#Version 1.0  6/5/17
#Blake Young & Dan Sheehy
declare upper;
input Show_Futures_Label = yes;
Input Futures_Lot_Size = 1;
input Show_Forex_Label = yes;
Input Forex_Lot_Size = 1;
DefineGlobalColor(“Label_Background”, Color.red);
AddLabel(Show_Futures_Label, “Futures Tick Size: $” + (TickSize()), globalColor(“Label_Background”));
 AddLabel(Show_Futures_Label, Futures_Lot_Size + ” Lot Tick Value: $” + (Futures_Lot_Size * TickValue()), globalColor(“Label_Background”));
DefineGlobalColor(“Label_Background”, Color.red);
AddLabel(Show_Forex_Label, ” Forex Pip Size: $” +  (10 * (TickSize()) * (1)),
globalColor(“Label_Background”));
 AddLabel(Show_Forex_Label, Forex_Lot_Size + ” Lot Pip Value: $” + Forex_Lot_Size *  (10 * (Tickvalue()) ), globalColor(“Label_Background”));