#hint: <b>Fibonacci Fan lines</b>
Fibonacci Fan lines are trend lines based on Fibonacci retracement points. Rising fan lines extend up from a trough and pass through retracement based on the advance (lowest low to highest high or on the falling fan lines: highest high to lowest low). These fan lines can then be used to estimate support levels or potential reversal zones. Falling fan lines can then be used to estimate resistance levels or potential reversal zones.
#hint Price: Price used in the alerts on crossing of the fans. <b>(Default is Close)</b>
#hint onExpansion: Determines if the fan lines are projected past the current bar into the right side expansion <b>(Default is Yes)</b>
#hint Coefficient1: Fan Line 1: Trough to 38.2% retracement on rising fans.
Peak to 38.2% Coefficient on falling fans. <b>(Default is 38.2%)</b>
#hint Coefficient_2: Fan Line 2:
Trough to 50% retracement on rising fans.
Peak to 50% Coefficient on falling fans. <b>(Default is 50%)</b>
#hint Coefficient_3: Fan Line 3:
Trough to 61.8% retracement on rising fans.
Peak to 61.8% Coefficient on falling fans. <b>(Default is 61.8%)</b>
#wizard input: Price
#wizard text: Inputs: Price:
#wizard input: onExpansion
#wizard text: onExpansion:
#wizard input: Coefficient1
#wizard text: Coefficient1 :
#wizard input: Coefficient_2
#wizard text: Coefficient_2:
#wizard input: Coefficient_3
#wizard text: Coefficient_3:
input price = close;
input high = high;
input low = low;
input onExpansion = Yes;
input Coefficient1 = .382;
input Coefficient_2 = .5;
input Coefficient_3 = .618;
def a = HighestAll(high);
def b = LowestAll(low);
def barnumber = barNumber();
def c = if high == a then barnumber else double.nan;
def d = if low == b then barnumber else double.nan;
rec highnumber = compoundValue(1, if IsNaN(c) then highnumber[1] else c, c);
def highnumberall = HighestAll(highnumber);
rec lownumber = compoundValue(1, if IsNaN(d) then lownumber[1] else d, d);
def lownumberall = LowestAll(lownumber);
def upward = highnumberall > lownumberall;
def downward = highnumberall < lownumberall;
def low382 = b + ((b - a) * Coefficient1);
def low5 = b + ((b - a) * Coefficient_2);
def low618 = b + ((b - a) * Coefficient_3);
def high382 = a - ((a - b) * Coefficient1);
def high5 = a - ((a - b) * Coefficient_2);
def high618 = a - ((a - b) * Coefficient_3);
def x = AbsValue(lownumberall - highnumberall );
def slope = (a - b) / x;
def slope382 = (high382 - b) / x;
def slope5 = (high5 - b) / x;
def slope618 = (high618 - b) / x;
def slopelow = (b - a) / x;
def slopelow382 = (low382 - b) / x;
def slopelow5 = (low5 - b) / x;
def slopelow618 = (low618 - b) / x;
def day = getDay();
def month = getMonth();
def year = getYear();
def lastDay = getLastDay();
def lastmonth = getLastMonth();
def lastyear = getLastYear();
def isToday = if(day == lastDay and month == lastmonth and year == lastyear, 1, 0);
def istodaybarnumber = HighestAll(if isToday then barnumber else double.nan);
def line = b + (slope * (barnumber - lownumber));
def line382 = b + (slope382 * (barnumber - lownumber));
def line5 = b + (slope5 * (barnumber - lownumber));
def line618 = b + (slope618 * (barnumber - lownumber));
def linelow = a + (slopelow * (barnumber - highnumber));
def line382low = a + (slopelow382 * (barnumber - highnumber));
def line5low = a + (slopelow5 * (barnumber - highnumber));
def line618low = a + (slopelow618 * (barnumber - highnumber));
def currentlinelow = if barnumber <= istodaybarnumber then linelow else double.nan;
def currentline382low = if barnumber <= istodaybarnumber then line382low else double.nan;
def currentline5low = if barnumber <= istodaybarnumber then line5low else double.nan;
def currentline618low = if barnumber <= istodaybarnumber then line618low else double.nan;
def currentline = if barnumber <= istodaybarnumber then line else double.nan;
def currentline382 = if barnumber <= istodaybarnumber then line382 else double.nan;
def currentline5 = if barnumber <= istodaybarnumber then line5 else double.nan;
def currentline618 = if barnumber <= istodaybarnumber then line618 else double.nan;
Plot FibFan = if downward and onExpansion then linelow else if downward then currentlinelow else if upward and onExpansion then line else if upward then currentline else double.nan;
FibFan.SetStyle(Curve.SHORT_DASH);
FibFan.AssignValueColor(color.red);
Plot "Coefficient 1" = if (downward and onExpansion) then line382low else if downward then currentline382low else if upward and onExpansion then line382 else if upward then currentline382 else double.nan;
"Coefficient 1".SetStyle(Curve.Firm);
"Coefficient 1".AssignValueColor(color.red);
Plot "Coefficient 2" = if downward and onExpansion then line5low else if downward then currentline5low else if upward and onExpansion then line5 else if upward then currentline5 else double.nan;
"Coefficient 2".AssignValueColor(color.red);
"Coefficient 2".SetStyle(Curve.Firm);
Plot "Coefficient 3" = if downward and onExpansion then line618low else if downward then currentline618low else if upward and onExpansion then line618 else if upward then currentline618 else double.nan;
"Coefficient 3".AssignValueColor(color.red);
"Coefficient 3".SetStyle(Curve.Firm);
alert((price crosses below "Coefficient 1") , "Price crosses below Coefficient 1");
alert((price crosses below "Coefficient 2") , "Price crosses below Coefficient 2");
alert((price crosses below "Coefficient 3") , "Price crosses below Coefficient 3");
alert((price crosses above "Coefficient 1") , "Price crosses above Coefficient 1");
alert((price crosses above "Coefficient 2") , "Price crosses above Coefficient 2");
alert((price crosses above "Coefficient 3") , "Price crosses above Coefficient 3");
End
By Jesse
##Begin##
#hint: <b>Fibonacci Fan lines</b>\nFibonacci Fan lines are trendlines based on Fibonacci retracement points. Rising fan lines extend up from a trough and pass through retracement based on the advance (lowest low to highest high or on the falling fan lines: highest high to lowest low). These fan lines can then be used to estimate support levels or potential reversal zones. Falling fan lines can then be used to estimate resistance levels or potential reversal zones.
#hint Price: Price used in the alerts on crossing of the fans. <b>(Default is Close)</b>
#hint onExpansion: Determines if the fan lines are projected past the current bar into the right side expansion <b>(Default is Yes)</b>
#hint Coefficient1: Fan Line 1: Trough to 38.2% retracement on rising fans. \nPeak to 38.2% Coefficient on falling fans. <b>(Default is 38.2%)</b>
#hint Coefficient_2: Fan Line 2: \nTrough to 50% retracement on rising fans. \nPeak to 50% Coefficient on falling fans. <b>(Default is 50%)</b>
#hint Coefficient_3: Fan Line 3: \nTrough to 61.8% retracement on rising fans. \nPeak to 61.8% Coefficient on falling fans. <b>(Default is 61.8%)</b>
#wizard input: Price
#wizard text: Inputs: Price:
#wizard input: onExpansion
#wizard text: onExpansion:
#wizard input: Coefficient1
#wizard text: Coefficient1 :
#wizard input: Coefficient_2
#wizard text: Coefficient_2:
#wizard input: Coefficient_3
#wizard text: Coefficient_3:
input price = close;
input high = high;
input low = low;
input onExpansion = Yes;
input Coefficient1 = .382;
input Coefficient_2 = .5;
input Coefficient_3 = .618;
def a = HighestAll(high);
def b = LowestAll(low);
def barnumber = barNumber();
def c = if high == a then barnumber else double.nan;
def d = if low == b then barnumber else double.nan;
rec highnumber = compoundValue(1, if IsNaN(c) then highnumber[1] else c, c);
def highnumberall = HighestAll(highnumber);
rec lownumber = compoundValue(1, if IsNaN(d) then lownumber[1] else d, d);
def lownumberall = LowestAll(lownumber);
def upward = highnumberall > lownumberall;
def downward = highnumberall < lownumberall;
def low382 = b + ((b - a) * Coefficient1);
def low5 = b + ((b - a) * Coefficient_2);
def low618 = b + ((b - a) * Coefficient_3);
def high382 = a - ((a - b) * Coefficient1);
def high5 = a - ((a - b) * Coefficient_2);
def high618 = a - ((a - b) * Coefficient_3);
def x = AbsValue(lownumberall - highnumberall );
def slope = (a - b) / x;
def slope382 = (high382 - b) / x;
def slope5 = (high5 - b) / x;
def slope618 = (high618 - b) / x;
def slopelow = (b - a) / x;
def slopelow382 = (low382 - b) / x;
def slopelow5 = (low5 - b) / x;
def slopelow618 = (low618 - b) / x;
def day = getDay();
def month = getMonth();
def year = getYear();
def lastDay = getLastDay();
def lastmonth = getLastMonth();
def lastyear = getLastYear();
def isToday = if(day == lastDay and month == lastmonth and year == lastyear, 1, 0);
def istodaybarnumber = HighestAll(if isToday then barnumber else double.nan);
def line = b + (slope * (barnumber - lownumber));
def line382 = b + (slope382 * (barnumber - lownumber));
def line5 = b + (slope5 * (barnumber - lownumber));
def line618 = b + (slope618 * (barnumber - lownumber));
def linelow = a + (slopelow * (barnumber - highnumber));
def line382low = a + (slopelow382 * (barnumber - highnumber));
def line5low = a + (slopelow5 * (barnumber - highnumber));
def line618low = a + (slopelow618 * (barnumber - highnumber));
def currentlinelow = if barnumber <= istodaybarnumber then linelow else double.nan;
def currentline382low = if barnumber <= istodaybarnumber then line382low else double.nan;
def currentline5low = if barnumber <= istodaybarnumber then line5low else double.nan;
def currentline618low = if barnumber <= istodaybarnumber then line618low else double.nan;
def currentline = if barnumber <= istodaybarnumber then line else double.nan;
def currentline382 = if barnumber <= istodaybarnumber then line382 else double.nan;
def currentline5 = if barnumber <= istodaybarnumber then line5 else double.nan;
def currentline618 = if barnumber <= istodaybarnumber then line618 else double.nan;
Plot FibFan = if downward and onExpansion then linelow else if downward then currentlinelow else if upward and onExpansion then line else if upward then currentline else double.nan;
FibFan.SetStyle(Curve.SHORT_DASH);
FibFan.AssignValueColor(color.red);
Plot "Coefficient 1" = if (downward and onExpansion) then line382low else if downward then currentline382low else if upward and onExpansion then line382 else if upward then currentline382 else double.nan;
"Coefficient 1".SetStyle(Curve.Firm);
"Coefficient 1".AssignValueColor(color.red);
Plot "Coefficient 2" = if downward and onExpansion then line5low else if downward then currentline5low else if upward and onExpansion then line5 else if upward then currentline5 else double.nan;
"Coefficient 2".AssignValueColor(color.red);
"Coefficient 2".SetStyle(Curve.Firm);
Plot "Coefficient 3" = if downward and onExpansion then line618low else if downward then currentline618low else if upward and onExpansion then line618 else if upward then currentline618 else double.nan;
"Coefficient 3".AssignValueColor(color.red);
"Coefficient 3".SetStyle(Curve.Firm);
alert((price crosses below "Coefficient 1") , "Price crosses below Coefficient 1");
alert((price crosses below "Coefficient 2") , "Price crosses below Coefficient 2");
alert((price crosses below "Coefficient 3") , "Price crosses below Coefficient 3");
alert((price crosses above "Coefficient 1") , "Price crosses above Coefficient 1");
alert((price crosses above "Coefficient 2") , "Price crosses above Coefficient 2");
alert((price crosses above "Coefficient 3") , "Price crosses above Coefficient 3");
##End##
input aggregationAF = AggregationPeriod.quARTER;
def high = high(period = aggregationAF)[1];
def low = low(period = aggregationAF)[1];
def close = low(period = aggregationaf)[1];
def a = high;
def b = low;
def barnumber = (BarNumber());
def c = if high == a then barnumber else Double.NaN;
def d = if low == b then barnumber else Double.Nan;
def highnumberall = HighestAll(c);
def lownumberall = LowestAll(d);
input factoraf = 1;
input lengthaf = 1;
def ATR = FactorAF * MovingAverage( AverageType.SIMPLE, TrueRange(high, close, low), lengthAF);
def low1 = b + ((b-a) * -2.386);
def low2 = b + ((b-a) * .114);
def low3 = b + ((b-a) * -2.618);
def low4 = b + ((b-a) * .236);
def low5 = b + ((b-a) * -1.3);
def low6 = b + ((b-a) * .618);
def low7 = b + ((b-a) * 1.618);
def low8 = b + ((b-a) * .386);
def low9 = b + ((b-a) * 0);
def low10 = b + ((b-a) * -.236);
def low11 = b + ((b-a) * -.114);
def low12 = b + ((b-a) * -5.368);
def low13 = b + ((b-a) * -.618);
def low14 = b + ((b-a) * -.236);
def low15 = b + ((b-a) * -1.14);
def low16 = b + ((b-a) * -1.7);
def low17 = b + ((b-a) * -1.886);
def low18 = b + ((b-a) * -1);
def x = AbsValue(lownumberall - highnumberall );
def slope = (a - b) / x;
def slope2 = (low1 - b) / x;
def slope3 = (low2 - b) / x;
def slope4 = (low3 - b) / x;
def slope5 = (low4 - b) / x;
def slope6 = (low5 - b) / x;
def slope7 = (low6 - b) / x;
def slope8 = (low7 - b) / x;
def slope9 = (low8 - b) / x;
def slope10 = (low9 - b) / x;
def slope11 = (low10 - b) / x;
def slope12 = (low11 - b) / x;
def slope13 = (low12 - b) / x;
def slope14 = (low13 - b) / x;
def slope15 = (low14 - b) / x;
def slope16 = (low15 - b) / x;
def slope17 = (low16 - b) / x;
def slope18 = (low17 - b) / x;
def slope19 = (low18 - b) / x;
plot line = b + (.5*slope * (d - low));
plot line2 = b + (slope2 * (d - low));
plot line3 = b + (slope3 * (d - low));
plot line4 = b + (slope4 * (d - low));
plot line5 = b + (slope5 * (d - low));
plot line6 = b + (slope6 * (d - low));
plot line7 = b + (slope7 * (d - low));
plot line8 = b + (slope8 * (d - low));
plot line9 = b + (slope9 * (d - low));
plot line10 = b + (slope10 * (d - low));
plot line11 = b + (slope11 * (d - low));
plot line12 = b + (slope12 * (d - low));
plot line13 = b + (slope13 * (d - low));
plot line14 = b + (slope14 * (d - low));
plot line15 = b + (slope15 * (d - low));
plot line16 = b + (slope16 * (d - low));
plot line17 = b + (slope17 * (d - low));
plot line18 = b + (slope18 * (d - low));
plot line19 = b + (slope19 * (d - low));
#y=mx+b
def paintingStrategy = PaintingStrategy.HORIZONTAL ;
line.SetPaintingStrategy(paintingStrategy);
line2.SetPaintingStrategy(paintingStrategy);
line3.SetPaintingStrategy(paintingStrategy);
line4.SetPaintingStrategy(paintingStrategy);
line5.SetPaintingStrategy(paintingStrategy);
line6.SetPaintingStrategy(paintingStrategy);
line7.SetPaintingStrategy(paintingStrategy);
line8.SetPaintingStrategy(paintingStrategy);
line9.SetPaintingStrategy(paintingStrategy);
line10.SetPaintingStrategy(paintingStrategy);
line11.SetPaintingStrategy(paintingStrategy);
line12.SetPaintingStrategy(paintingStrategy);
line13.SetPaintingStrategy(paintingStrategy);
line14.SetPaintingStrategy(paintingStrategy);
line15.SetPaintingStrategy(paintingStrategy);
line16.SetPaintingStrategy(paintingStrategy);
line17.SetPaintingStrategy(paintingStrategy);
line18.SetPaintingStrategy(paintingStrategy);
line19.SetPaintingStrategy(paintingStrategy);
addcloud(line17, line18, color.green);
addcloud(line12, line3, color.green);
addcloud(line9, line7, color.cyan);
addcloud(line14, line, color.green);
addcloud(line6, line19, color.yellow);
addcloud(line4, line2, color.red);
https://usethinkscript.com/threads/fibonacci-fans-indicator-for-thinkorswim.8108/Can you make the bottom indicator version4?
thanks
Hello. When i tried to add this Fib Fan it had invalid statements that I dont know how to solve. Would someone take a look at it? I am looking for a fib fan that I can attach to the Peak i want. ThanksGive this a try
Rich (BB code):#hint: <b>Fibonacci Fan lines</b> Fibonacci Fan lines are trend lines based on Fibonacci retracement points. Rising fan lines extend up from a trough and pass through retracement based on the advance (lowest low to highest high or on the falling fan lines: highest high to lowest low). These fan lines can then be used to estimate support levels or potential reversal zones. Falling fan lines can then be used to estimate resistance levels or potential reversal zones. #hint Price: Price used in the alerts on crossing of the fans. <b>(Default is Close)</b> #hint onExpansion: Determines if the fan lines are projected past the current bar into the right side expansion <b>(Default is Yes)</b> #hint Coefficient1: Fan Line 1: Trough to 38.2% retracement on rising fans. Peak to 38.2% Coefficient on falling fans. <b>(Default is 38.2%)</b> #hint Coefficient_2: Fan Line 2: Trough to 50% retracement on rising fans. Peak to 50% Coefficient on falling fans. <b>(Default is 50%)</b> #hint Coefficient_3: Fan Line 3: Trough to 61.8% retracement on rising fans. Peak to 61.8% Coefficient on falling fans. <b>(Default is 61.8%)</b> #wizard input: Price #wizard text: Inputs: Price: #wizard input: onExpansion #wizard text: onExpansion: #wizard input: Coefficient1 #wizard text: Coefficient1 : #wizard input: Coefficient_2 #wizard text: Coefficient_2: #wizard input: Coefficient_3 #wizard text: Coefficient_3: input price = close; input high = high; input low = low; input onExpansion = Yes; input Coefficient1 = .382; input Coefficient_2 = .5; input Coefficient_3 = .618; def a = HighestAll(high); def b = LowestAll(low); def barnumber = barNumber(); def c = if high == a then barnumber else double.nan; def d = if low == b then barnumber else double.nan; rec highnumber = compoundValue(1, if IsNaN(c) then highnumber[1] else c, c); def highnumberall = HighestAll(highnumber); rec lownumber = compoundValue(1, if IsNaN(d) then lownumber[1] else d, d); def lownumberall = LowestAll(lownumber); def upward = highnumberall > lownumberall; def downward = highnumberall < lownumberall; def low382 = b + ((b - a) * Coefficient1); def low5 = b + ((b - a) * Coefficient_2); def low618 = b + ((b - a) * Coefficient_3); def high382 = a - ((a - b) * Coefficient1); def high5 = a - ((a - b) * Coefficient_2); def high618 = a - ((a - b) * Coefficient_3); def x = AbsValue(lownumberall - highnumberall ); def slope = (a - b) / x; def slope382 = (high382 - b) / x; def slope5 = (high5 - b) / x; def slope618 = (high618 - b) / x; def slopelow = (b - a) / x; def slopelow382 = (low382 - b) / x; def slopelow5 = (low5 - b) / x; def slopelow618 = (low618 - b) / x; def day = getDay(); def month = getMonth(); def year = getYear(); def lastDay = getLastDay(); def lastmonth = getLastMonth(); def lastyear = getLastYear(); def isToday = if(day == lastDay and month == lastmonth and year == lastyear, 1, 0); def istodaybarnumber = HighestAll(if isToday then barnumber else double.nan); def line = b + (slope * (barnumber - lownumber)); def line382 = b + (slope382 * (barnumber - lownumber)); def line5 = b + (slope5 * (barnumber - lownumber)); def line618 = b + (slope618 * (barnumber - lownumber)); def linelow = a + (slopelow * (barnumber - highnumber)); def line382low = a + (slopelow382 * (barnumber - highnumber)); def line5low = a + (slopelow5 * (barnumber - highnumber)); def line618low = a + (slopelow618 * (barnumber - highnumber)); def currentlinelow = if barnumber <= istodaybarnumber then linelow else double.nan; def currentline382low = if barnumber <= istodaybarnumber then line382low else double.nan; def currentline5low = if barnumber <= istodaybarnumber then line5low else double.nan; def currentline618low = if barnumber <= istodaybarnumber then line618low else double.nan; def currentline = if barnumber <= istodaybarnumber then line else double.nan; def currentline382 = if barnumber <= istodaybarnumber then line382 else double.nan; def currentline5 = if barnumber <= istodaybarnumber then line5 else double.nan; def currentline618 = if barnumber <= istodaybarnumber then line618 else double.nan; Plot FibFan = if downward and onExpansion then linelow else if downward then currentlinelow else if upward and onExpansion then line else if upward then currentline else double.nan; FibFan.SetStyle(Curve.SHORT_DASH); FibFan.AssignValueColor(color.red); Plot "Coefficient 1" = if (downward and onExpansion) then line382low else if downward then currentline382low else if upward and onExpansion then line382 else if upward then currentline382 else double.nan; "Coefficient 1".SetStyle(Curve.Firm); "Coefficient 1".AssignValueColor(color.red); Plot "Coefficient 2" = if downward and onExpansion then line5low else if downward then currentline5low else if upward and onExpansion then line5 else if upward then currentline5 else double.nan; "Coefficient 2".AssignValueColor(color.red); "Coefficient 2".SetStyle(Curve.Firm); Plot "Coefficient 3" = if downward and onExpansion then line618low else if downward then currentline618low else if upward and onExpansion then line618 else if upward then currentline618 else double.nan; "Coefficient 3".AssignValueColor(color.red); "Coefficient 3".SetStyle(Curve.Firm); alert((price crosses below "Coefficient 1") , "Price crosses below Coefficient 1"); alert((price crosses below "Coefficient 2") , "Price crosses below Coefficient 2"); alert((price crosses below "Coefficient 3") , "Price crosses below Coefficient 3"); alert((price crosses above "Coefficient 1") , "Price crosses above Coefficient 1"); alert((price crosses above "Coefficient 2") , "Price crosses above Coefficient 2"); alert((price crosses above "Coefficient 3") , "Price crosses above Coefficient 3"); End
Hey Ben, Can you please create a shareable link for this study: The Fibonacci Fan Lines. I keep receiving an error message showing two invalid statements; see attached picture...ThanksGive this a try
Rich (BB code):#hint: <b>Fibonacci Fan lines</b> Fibonacci Fan lines are trend lines based on Fibonacci retracement points. Rising fan lines extend up from a trough and pass through retracement based on the advance (lowest low to highest high or on the falling fan lines: highest high to lowest low). These fan lines can then be used to estimate support levels or potential reversal zones. Falling fan lines can then be used to estimate resistance levels or potential reversal zones. #hint Price: Price used in the alerts on crossing of the fans. <b>(Default is Close)</b> #hint onExpansion: Determines if the fan lines are projected past the current bar into the right side expansion <b>(Default is Yes)</b> #hint Coefficient1: Fan Line 1: Trough to 38.2% retracement on rising fans. Peak to 38.2% Coefficient on falling fans. <b>(Default is 38.2%)</b> #hint Coefficient_2: Fan Line 2: Trough to 50% retracement on rising fans. Peak to 50% Coefficient on falling fans. <b>(Default is 50%)</b> #hint Coefficient_3: Fan Line 3: Trough to 61.8% retracement on rising fans. Peak to 61.8% Coefficient on falling fans. <b>(Default is 61.8%)</b> #wizard input: Price #wizard text: Inputs: Price: #wizard input: onExpansion #wizard text: onExpansion: #wizard input: Coefficient1 #wizard text: Coefficient1 : #wizard input: Coefficient_2 #wizard text: Coefficient_2: #wizard input: Coefficient_3 #wizard text: Coefficient_3: input price = close; input high = high; input low = low; input onExpansion = Yes; input Coefficient1 = .382; input Coefficient_2 = .5; input Coefficient_3 = .618; def a = HighestAll(high); def b = LowestAll(low); def barnumber = barNumber(); def c = if high == a then barnumber else double.nan; def d = if low == b then barnumber else double.nan; rec highnumber = compoundValue(1, if IsNaN(c) then highnumber[1] else c, c); def highnumberall = HighestAll(highnumber); rec lownumber = compoundValue(1, if IsNaN(d) then lownumber[1] else d, d); def lownumberall = LowestAll(lownumber); def upward = highnumberall > lownumberall; def downward = highnumberall < lownumberall; def low382 = b + ((b - a) * Coefficient1); def low5 = b + ((b - a) * Coefficient_2); def low618 = b + ((b - a) * Coefficient_3); def high382 = a - ((a - b) * Coefficient1); def high5 = a - ((a - b) * Coefficient_2); def high618 = a - ((a - b) * Coefficient_3); def x = AbsValue(lownumberall - highnumberall ); def slope = (a - b) / x; def slope382 = (high382 - b) / x; def slope5 = (high5 - b) / x; def slope618 = (high618 - b) / x; def slopelow = (b - a) / x; def slopelow382 = (low382 - b) / x; def slopelow5 = (low5 - b) / x; def slopelow618 = (low618 - b) / x; def day = getDay(); def month = getMonth(); def year = getYear(); def lastDay = getLastDay(); def lastmonth = getLastMonth(); def lastyear = getLastYear(); def isToday = if(day == lastDay and month == lastmonth and year == lastyear, 1, 0); def istodaybarnumber = HighestAll(if isToday then barnumber else double.nan); def line = b + (slope * (barnumber - lownumber)); def line382 = b + (slope382 * (barnumber - lownumber)); def line5 = b + (slope5 * (barnumber - lownumber)); def line618 = b + (slope618 * (barnumber - lownumber)); def linelow = a + (slopelow * (barnumber - highnumber)); def line382low = a + (slopelow382 * (barnumber - highnumber)); def line5low = a + (slopelow5 * (barnumber - highnumber)); def line618low = a + (slopelow618 * (barnumber - highnumber)); def currentlinelow = if barnumber <= istodaybarnumber then linelow else double.nan; def currentline382low = if barnumber <= istodaybarnumber then line382low else double.nan; def currentline5low = if barnumber <= istodaybarnumber then line5low else double.nan; def currentline618low = if barnumber <= istodaybarnumber then line618low else double.nan; def currentline = if barnumber <= istodaybarnumber then line else double.nan; def currentline382 = if barnumber <= istodaybarnumber then line382 else double.nan; def currentline5 = if barnumber <= istodaybarnumber then line5 else double.nan; def currentline618 = if barnumber <= istodaybarnumber then line618 else double.nan; Plot FibFan = if downward and onExpansion then linelow else if downward then currentlinelow else if upward and onExpansion then line else if upward then currentline else double.nan; FibFan.SetStyle(Curve.SHORT_DASH); FibFan.AssignValueColor(color.red); Plot "Coefficient 1" = if (downward and onExpansion) then line382low else if downward then currentline382low else if upward and onExpansion then line382 else if upward then currentline382 else double.nan; "Coefficient 1".SetStyle(Curve.Firm); "Coefficient 1".AssignValueColor(color.red); Plot "Coefficient 2" = if downward and onExpansion then line5low else if downward then currentline5low else if upward and onExpansion then line5 else if upward then currentline5 else double.nan; "Coefficient 2".AssignValueColor(color.red); "Coefficient 2".SetStyle(Curve.Firm); Plot "Coefficient 3" = if downward and onExpansion then line618low else if downward then currentline618low else if upward and onExpansion then line618 else if upward then currentline618 else double.nan; "Coefficient 3".AssignValueColor(color.red); "Coefficient 3".SetStyle(Curve.Firm); alert((price crosses below "Coefficient 1") , "Price crosses below Coefficient 1"); alert((price crosses below "Coefficient 2") , "Price crosses below Coefficient 2"); alert((price crosses below "Coefficient 3") , "Price crosses below Coefficient 3"); alert((price crosses above "Coefficient 1") , "Price crosses above Coefficient 1"); alert((price crosses above "Coefficient 2") , "Price crosses above Coefficient 2"); alert((price crosses above "Coefficient 3") , "Price crosses above Coefficient 3"); End
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Start a new thread and receive assistance from our community.
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.
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.