Trying to add MTF

shizah

Member
I'm trying to add MTF feature to my script and not having any luck. If someone could add MTF feature, it would be greatly appreciated!
Code:
def SMA = Average((high[1] + low[1] + close[1]) / 3, 5);
def nan = Double.NaN;
def barUp = (ExpAverage(close, 2) > SMA) ;
def barDown = ( ExpAverage(close, 2) < SMA);
def barUpCount = CompoundValue(1, if barUp then barUpCount[1] + 1 else 0, 0);
def pBarUpCount = if barUpCount > 0 then barUpCount else nan;
def barDownCount = CompoundValue(1, if barDown then barDownCount[1] - 1 else 0, 0);
def pBarDownCount = if barDownCount < 0 then barDownCount else nan;
AddLabel(yes, "Count " + (" " + (Round(barDownCount + barUpCount, 1))), if barUpCount >= 1 then Color.GREEN else if barDownCount <= -1 then Color.RED else Color.GRAY);
def x = Round(barDownCount + barUpCount, 1);

def entryprice = if x == 1 then high else if x == 2 then high[1] else if x == 3 then high[2]   else if x == 4 then high[3]  else if x == 5 then high[4]  else if x == 6 then high[5]  else if x == 7 then high[6]  else if x == 8 then high[7]  else if x == 9 then high[8]  else if x == 10 then high[9]  else if x == 11 then high[10] else if x == 12 then high[11] else if x == 13 then high[12] else if x == 14 then high[13] else if x == 15 then high[14] else if x == 16 then high[15] else if x == 17 then high[16] else if x == 18 then high[17] else  if x == 19 then high[18] else if x == 20 then high[19]  else if x == 21 then high[20]  else if x == 22 then high[21]  else if x == 23 then high[22]  else if x == 24 then high[23]  else if x == 25 then high[24]  else if x == 26 then high[25]  else if x == 27 then high[26]  else if x == 27 then high[26]  else if x == 28 then high[27]  else if x == 29 then high[28]  else if x == 30 then high[29]  else if x == 31 then high[30]  else if x == 32 then high[31]  else if x == 33 then high[32]  else if x == 34 then high[33]  else if x == 35 then high[34]  else if x == 36 then high[35]  else if x == 37 then high[36]  else if x == 38 then high[37]  else if x == 39 then high[38]  else if x == 40 then high[39]  else if x == 41 then high[40] else if x == -1 then low else if x == -2 then low[1] else if x == -3 then low[2]   else if x == -4 then low[3]  else if x == -5 then low[4]  else if x == -6 then low[5]  else if x == -7 then low[6]  else if x == -8 then low[7]  else if x == -9 then low[8]  else if x == -10 then low[9]  else if x == -11 then low[10] else if x == -12 then low[11] else if x == -13 then low[12] else if x == -14 then low[13] else if x == -15 then low[14] else if x == -16 then low[15] else if x == -17 then low[16] else if x == -18 then low[17] else  if x == -19 then low[18] else if x == -20 then low[19] else if x == -21 then low[20] else if x == -22 then low[21] else if x == -23 then low[22] else if x == -24 then low[23]  else if x == -25 then low[24]  else if x == -26 then low[25]  else if x == -27 then low[26] else if x == -28 then low[27] else if x == -29 then low[28] else if x == -30 then low[29] else 0;

AddLabel(yes, " Entry Price " + entryprice,  Color.WHITE  );
AddLabel(yes, " Current Price " + close,  Color.CYAN  );
def gain = (close / entryprice - 1) * 100;
def dollargain = close - entryprice;
#dollargain.assignValueColor(if dollargain>=0 then color.green else color.red);

AddLabel(yes, " $ gain  " + dollargain,  Color.WHITE  );
AddLabel(yes, " % gain  " + gain,  if gain > 0 then Color.GREEN else Color.RED  );
def zero = 0;

# Horizontal Line into the future

# Plots the high and low that was made x bars ago into the future
# Added inputs to go from x bars to x bars from the current
# bar, so that you can adjust the line however you want

def       c = close;
def       h = high;
def       l = low;

input barsBack = 0;

def lastBar = if IsNaN(c[-1]) and !IsNaN(c)
              then BarNumber()
              else lastBar[1];
def hext    = if IsNaN(c)
              then hext[1]
              else h[barsBack];
input length_extended_from = 1;
input length_extended_to   = 3;
plot h2back = entryprice;
h2back.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
h2back.SetLineWeight(5);
h2back.setDefaultColor(color.white);

plot ema2=expAverage(close,2);
plot hlc3= simpleMovingAvg((high[1]+low[1]+close[1])/3,5);


AssignPriceColor(if ema2 > entryprice and ema2>hlc3 then Color.green else if ema2 < entryprice and ema2<hlc3 then Color.RED else color.light_gray);

#addchartBubble(ema2 >hlc3  and ema2[1] < hlc3[1],low-0.25,"B  "+ entryprice, COLOR.YELLOW);

#addchartBubble( ema2 < hlc3 and ema2[1] > hlc3[1],HIGH+0.25,"S  "+ entryprice, COLOR.WHITE);

plot bullTrigger = if(ema2 >hlc3  and ema2[1] < hlc3[1]) then low else Double.NaN;
bullTrigger.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
bullTrigger.AssignValueColor(Color.GREEN);

plot bearTrigger = if(ema2 < hlc3 and ema2[1] > hlc3[1]) then high else Double.NaN;
bearTrigger.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
bearTrigger.AssignValueColor( Color.RED);

# End Study

#AssignbackgroundColor(if ema2 > entryprice and ema2>hlc3 then Color.dark_green else if ema2 < entryprice and ema2<hlc3 then Color.dark_RED else color.black);

AddCloud(HLC3, 0, Color.LIGHT_GRAY, Color.LIGHT_GRAY);
 

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
389 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top