Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

lonew0lf

Negative/Reverse Divergence

Recommended Posts

Following on the great work done by aaa on the divergence indicator; I wanted to know if someone could potentially help in creating an indicator which shows negative or reverse divergence.

 

The attached indicator is a slight tweak from aaa's, and shows regular divergence only. The attached images show the negative divergence.

 

 

// StochRSI Divergence TrendLine
// Author: MARKPLEX
// http://markplex.com/tutorial4.php
// version: 1.0

// Author: aaa
// version: 2.0
// Date: 20091129
// added: 
// divergence on top +
// Line.Color.Top + Line.Color.Bot + Line.Size + Plot.Sto in inputs

//----------------------------------------------------
inputs:
//----------------------------------------------------


RSILength(9),
StochLength(18),
KLength(6),
DLength(3),
OverSold(20),
OverBought(80),
Length(20),
LeftStrength(3),
RightStrength(3),
Line.Color.Top(yellow),
Line.Color.Bot(white),
Line.Size(2),
Plot.stochrsi(1),
AlertOn.Off(1);

//---------------------------------------------------- 
variables:
//----------------------------------------------------

DToscK(0), 
DToscD(0),

oPivotPrice1(0),
oPivotBar1(0),
oPivotPrice2(0),
oPivotBar2(0),

oPivotPrice11(0),
oPivotBar11(0),
oPivotPrice12(0),
oPivotBar12(0);

value1 = FastKCustomEasy(RSI(C, RSILength),StochLength);
DToscK =  average(value1,KLength);
DToscD = average(DToscK,DLength);

Condition1 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, -1, oPivotPrice1, oPivotBar1 ) <> -1 
	AND ( oPivotBar1 - RightStrength ) = 0 ;

Condition11 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, 1, oPivotPrice11, oPivotBar11 ) <> -1 
	AND ( oPivotBar11 - RightStrength ) = 0 ;

Condition2 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, -1, oPivotPrice2, oPivotBar2 ) <> -1;

Condition12 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, 1, oPivotPrice12, oPivotBar12 ) <> -1;

If 
	Condition1 and Condition2 // added condition2 = referecne future data
	AND L[oPivotBar2] >= L[oPivotBar1] 
	AND DToscK[oPivotBar2] < DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New(D[oPivotBar2], T[oPivotBar2], L[oPivotBar2], D[oPivotBar1], T[oPivotBar1], L[oPivotBar1]); 
	TL_SetColor( Value2, Line.Color.Bot );
	TL_SetSize(  Value2, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "Divergence in Bottom" );
End;

If 
	Condition11 and Condition12 // added condition12  referecne future data
	AND H[oPivotBar12] <= H[oPivotBar11] 
	AND DToscK[oPivotBar12] > DToscK[oPivotBar11] then 
Begin
	Value12 = TL_New(D[oPivotBar12], T[oPivotBar12], H[oPivotBar12], D[oPivotBar11], T[oPivotBar11], H[oPivotBar11]); 
	TL_SetColor( Value12, Line.Color.Top );
	TL_SetSize(  Value12, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "Divergence in Top" );

End;

condition3 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, -1, oPivotPrice1, oPivotBar1 ) <> -1 
	AND ( oPivotBar1 - RightStrength ) = 0 ;

condition32 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, 1, oPivotPrice11, oPivotBar11 ) <> -1 
	AND ( oPivotBar11 - RightStrength ) = 0 ;

condition4 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, -1, oPivotPrice2, oPivotBar2 ) <> -1;

condition42 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, 1, oPivotPrice12, oPivotBar12 ) <> -1;

If 
	Condition3 and condition4 
	AND L[oPivotBar2] >= L[oPivotBar1] 
	AND DToscK[oPivotBar2] < DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New_SELF(D[oPivotBar2], T[oPivotBar2], DToscK[oPivotBar2], D[oPivotBar1], T[oPivotBar1], DToscK[oPivotBar1]); 
	TL_SetColor( Value2, Line.Color.Bot );
	TL_SetSize(  Value2, Line.Size  );
End;

If 
	Condition32 and Condition42
	AND H[oPivotBar12] <= H[oPivotBar11] 
	AND DToscK[oPivotBar12] > DToscK[oPivotBar11] then 
Begin
	Value12 = TL_New_SELF(D[oPivotBar12], T[oPivotBar12], DToscK[oPivotBar12], D[oPivotBar11], T[oPivotBar11], DToscK[oPivotBar11]); 
	TL_SetColor( Value12, Line.Color.Top );
	TL_SetSize(  Value12, Line.Size  );
End;

Plot1( DToscK, "stochrsi",      blue );
plot2( 20,    "oversold", white);
plot3(80, "overbought", white);

5aa7100ba58bd_audusdhiddendivergence.gif.bda952cf2c1cef24c8029a347981205e.gif

5aa7100baa5a4_esintradaydivergence.gif.e6076b6dba70ea993f64de0f9fd98dca.gif

hidden-bearish-divergence-blue.png.e923dda9cd66a08f700852c5adeaca77.png

hidden-bullish-divergence-blue.png.3daad3c8864fa0c08d6335b24e0e74a2.png

Share this post


Link to post
Share on other sites

Hi

 

Following on the great work done by aaa on the divergence indicator;

 

First of all thank you very much for the kind words,

 

but I've done nothing =

 

it is a 100% code from one of Martyn Whittaker' Xcellent 46 free tutorial

 

martyn.whittaker@markplex.com

 

***********

 

His site is a real gold mine 2 learn EL

 

http://markplex.com/tutorials.php

 

 

 
If 
[u]Condition1[/u] and 
[u]Condition2[/u] AND
L[oPivotBar2] [b][u]>=[/u][/b] L[oPivotBar1]  AND 
DToscK[oPivotBar2] [b][u]<[/u][/b] DToscK[oPivotBar1] 
then 
Value2 = TL_New(D[oPivotBar2], T[oPivotBar2],[b][u] L[oPivotBar2[/u][/b]], D[oPivotBar1], T[oPivotBar1], [u][b]L[oPivotBar1[/b][/u]]); 

 

 

Have U tried 2 "reverse" the code or anything else ?

 

When we post our personnal work ( even tho if it doesn't work ),

 

and if there is a solution,

 

they is always a kind coder 2 help us here.

 

rgds

Edited by aaa

Share this post


Link to post
Share on other sites

aaa - i initially tried the inverse but all that did was kick off errors. I finally got this one to work.

 

// StochRSI Divergence TrendLine
// Author: MARKPLEX
// http://markplex.com/tutorial4.php
// version: 1.0

// Author: aaa
// version: 2.0
// Date: 20091129
// added: 
// divergence on top +
// Line.Color.Top + Line.Color.Bot + Line.Size + Plot.Sto in inputs

//----------------------------------------------------
inputs:
//----------------------------------------------------


RSILength(9),
StochLength(18),
KLength(6),
DLength(3),
OverSold(20),
OverBought(80),
Length(20),
LeftStrength(3),
RightStrength(3),
Line.Color.Top(yellow),
Line.Color.Bot(white),
Line.Size(2),
Plot.stochrsi(1),
AlertOn.Off(1);

//---------------------------------------------------- 
variables:
//----------------------------------------------------

DToscK(0), 
DToscD(0),

oPivotPrice1(0),
oPivotBar1(0),
oPivotPrice2(0),
oPivotBar2(0),

oPivotPrice11(0),
oPivotBar11(0),
oPivotPrice12(0),
oPivotBar12(0);

value1 = FastKCustomEasy(RSI(C, RSILength),StochLength);
DToscK =  average(value1,KLength);
DToscD = average(DToscK,DLength);

Condition1 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, -1, oPivotPrice1, oPivotBar1 ) <> -1 
	AND ( oPivotBar1 - RightStrength ) = 0 ;

Condition11 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, 1, oPivotPrice11, oPivotBar11 ) <> -1 
	AND ( oPivotBar11 - RightStrength ) = 0 ;

Condition2 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, -1, oPivotPrice2, oPivotBar2 ) <> -1;

Condition12 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, 1, oPivotPrice12, oPivotBar12 ) <> -1;

If 
	Condition1 and Condition2 // added condition2 = referecne future data
	AND L[oPivotBar1] >= L[oPivotBar2] 
	AND DToscK[oPivotBar2] > DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New(D[oPivotBar2], T[oPivotBar2], L[oPivotBar2], D[oPivotBar1], T[oPivotBar1], L[oPivotBar1]); 
	TL_SetColor( Value2, Line.Color.Bot );
	TL_SetSize(  Value2, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "Hid Div Bottom" );
End;

If 
	Condition11 and Condition12 // added condition12  referecne future data
	AND H[oPivotBar11] <= H[oPivotBar12] 
	AND DToscK[oPivotBar11] > DToscK[oPivotBar12] then 
Begin
	Value12 = TL_New(D[oPivotBar12], T[oPivotBar12], H[oPivotBar12], D[oPivotBar11], T[oPivotBar11], H[oPivotBar11]); 
	TL_SetColor( Value12, Line.Color.Top );
	TL_SetSize(  Value12, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "Hid Div Top" );
End;

condition3 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, -1, oPivotPrice1, oPivotBar1 ) <> -1 
	AND ( oPivotBar1 - RightStrength ) = 0 ;

condition32 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, 1, oPivotPrice11, oPivotBar11 ) <> -1 
	AND ( oPivotBar11 - RightStrength ) = 0 ;

condition4 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, -1, oPivotPrice2, oPivotBar2 ) <> -1;

condition42 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, 1, oPivotPrice12, oPivotBar12 ) <> -1;

If 
	Condition3 and condition4 
	AND L[oPivotBar1] >= L[oPivotBar2] 
	AND DToscK[oPivotBar2] > DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New_SELF(D[oPivotBar2], T[oPivotBar2], DToscK[oPivotBar2], D[oPivotBar1], T[oPivotBar1], DToscK[oPivotBar1]); 
	TL_SetColor( Value2, Line.Color.Bot );
	TL_SetSize(  Value2, Line.Size  );
End;

If 
	Condition32 and Condition42
	AND H[oPivotBar11] <= H[oPivotBar12] 
	AND DToscK[oPivotBar11] > DToscK[oPivotBar12] then 
Begin
	Value12 = TL_New_SELF(D[oPivotBar12], T[oPivotBar12], DToscK[oPivotBar12], D[oPivotBar11], T[oPivotBar11], DToscK[oPivotBar11]); 
	TL_SetColor( Value12, Line.Color.Top );
	TL_SetSize(  Value12, Line.Size  );
End;

Plot1( DToscK, "stochrsi",      blue );
plot2( 20,    "oversold", white);
plot3(80, "overbought", white);

Share this post


Link to post
Share on other sites

Hi LoneWolf

 

The solution was hidden in my suggestion ( HeHeHe !!)

and U've made good homework

 

*****************

 

I will not post any more Div indic than Sto + Rsi + MACD

 

In fact I try 2 trade with the trend, not against it.

 

Below is the Martyn Whittaker' logic of divergence

Everybody can easily apply it 2 any kind of indicators in 3 steps

 

1 Copy the entire Divergence code 2 your new div TrendLine indicator

2 Put the code of your preferate indicator in My.Indicator variable

3 Add personnal ideas 2 suit your way of Trading

 

rgds

 

aaa

 

***********************

 

inputs:

MyIndicator.Length(30),

 

variables:

My.Indicator(0),

 

My.Indicator=RSI(Close,MyIndicator.Length);

 

Condition1=Pivot(

My.Indicator,Length,LeftStrength,RightStrength,1,-1,

oPivotPrice1,oPivotBar1)<>-1 AND

 

(oPivotBar1-RightStrength)=0;

 

Condition2=Pivot(

My.Indicator,,Length,LeftStrength,RightStrength,2,-1,

oPivotPrice2,oPivotBar2)<>-1;

 

If

Condition1AND

Condition2AND

L[oPivotBar2]>=L[oPivotBar1]AND

My.Indicator,[oPivotBar2]> My.Indicator,[oPivotBar1]then // Change the sign < divergence > hidden divergence

 

etc..

 

**************

Edited by aaa

Share this post


Link to post
Share on other sites

I agree with you on staying with the trend. That was my reason why having the hidden divergence was important since it shows a continuation of the trend.

 

I seem to be running into a new problem now, it appears that the indicator is firing off alerts late. In the attached picture for example (15 min chart). The positive divergence is completed at 1am est, however the alert doesn't trigger until 1:45am.

 

I looked at the code but can't seem to figure out what's causing the delay. Open to suggestions.

 


//----------------------------------------------------
inputs:
//----------------------------------------------------


RSILength(9),
StochLength(18),
KLength(6),
DLength(3),
OverSold(20),
OverBought(80),
Length(20),
LeftStrength(3),
RightStrength(3),
Div.Color.Down(yellow),
Div.Color.Up(white),
HD.Color.Down (red),
HD.Color.Up (green),
Line.Size(2),
Plot.stochrsi(1),
AlertOn.Off(1);

//---------------------------------------------------- 
variables:
//----------------------------------------------------

DToscK(0), 
DToscD(0),

oPivotPrice1(0),
oPivotBar1(0),
oPivotPrice2(0),
oPivotBar2(0),

oPivotPrice11(0),
oPivotBar11(0),
oPivotPrice12(0),
oPivotBar12(0);

value1 = FastKCustomEasy(RSI(C, RSILength),StochLength);
DToscK =  average(value1,KLength);
DToscD = average(DToscK,DLength);

Condition1 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, -1, oPivotPrice1, oPivotBar1 ) <> -1 
	AND ( oPivotBar1 - RightStrength ) = 0 ;

Condition11 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, 1, oPivotPrice11, oPivotBar11 ) <> -1 
	AND ( oPivotBar11 - RightStrength ) = 0 ;

Condition2 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, -1, oPivotPrice2, oPivotBar2 ) <> -1;

Condition12 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, 1, oPivotPrice12, oPivotBar12 ) <> -1;

If 
	Condition1 and Condition2 // added condition2 = referecne future data
	AND L[oPivotBar1] >= L[oPivotBar2] 
	AND DToscK[oPivotBar2] > DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New(D[oPivotBar2], T[oPivotBar2], L[oPivotBar2], D[oPivotBar1], T[oPivotBar1], L[oPivotBar1]); 
	TL_SetColor( Value2, HD.Color.up );
	TL_SetSize(  Value2, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "HD Bottom" );
End;

	If 
	Condition1 and Condition2 // added condition2 = referecne future data
	AND L[oPivotBar2] >= L[oPivotBar1] 
	AND DToscK[oPivotBar2] < DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New(D[oPivotBar2], T[oPivotBar2], L[oPivotBar2], D[oPivotBar1], T[oPivotBar1], L[oPivotBar1]); 
	TL_SetColor( Value2, Div.Color.up );
	TL_SetSize(  Value2, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "DIV Bottom" );
End;

If 
	Condition11 and Condition12 // added condition12  referecne future data
	AND H[oPivotBar11] <= H[oPivotBar12] 
	AND DToscK[oPivotBar11] > DToscK[oPivotBar12] then 
Begin
	Value12 = TL_New(D[oPivotBar12], T[oPivotBar12], H[oPivotBar12], D[oPivotBar11], T[oPivotBar11], H[oPivotBar11]); 
	TL_SetColor( Value12, HD.Color.down );
	TL_SetSize(  Value12, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "HD Top" );
End;

	If 
	Condition11 and Condition12 // added condition12  referecne future data
	AND H[oPivotBar12] <= H[oPivotBar11] 
	AND DToscK[oPivotBar12] > DToscK[oPivotBar11] then 
Begin
	Value12 = TL_New(D[oPivotBar12], T[oPivotBar12], H[oPivotBar12], D[oPivotBar11], T[oPivotBar11], H[oPivotBar11]); 
	TL_SetColor( Value12, Div.Color.down );
	TL_SetSize(  Value12, Line.Size  );
		if AlertOn.Off <> 0 then
			Alert( "DIV Top" );

End;


condition3 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, -1, oPivotPrice1, oPivotBar1 ) <> -1 
	AND ( oPivotBar1 - RightStrength ) = 0 ;

condition32 = Pivot( DToscK, Length, LeftStrength, RightStrength, 1, 1, oPivotPrice11, oPivotBar11 ) <> -1 
	AND ( oPivotBar11 - RightStrength ) = 0 ;

condition4 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, -1, oPivotPrice2, oPivotBar2 ) <> -1;

condition42 = Pivot( DToscK, Length, LeftStrength, RightStrength, 2, 1, oPivotPrice12, oPivotBar12 ) <> -1;

If 
	Condition3 and condition4 
	AND L[oPivotBar1] >= L[oPivotBar2] 
	AND DToscK[oPivotBar2] > DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New_SELF(D[oPivotBar2], T[oPivotBar2], DToscK[oPivotBar2], D[oPivotBar1], T[oPivotBar1], DToscK[oPivotBar1]); 
	TL_SetColor( Value2, HD.Color.up );
	TL_SetSize(  Value2, Line.Size  );
End;

	If 
	Condition3 and condition4 
	AND L[oPivotBar2] >= L[oPivotBar1] 
	AND DToscK[oPivotBar2] < DToscK[oPivotBar1] then 
Begin
	Value2 = TL_New_SELF(D[oPivotBar2], T[oPivotBar2], DToscK[oPivotBar2], D[oPivotBar1], T[oPivotBar1], DToscK[oPivotBar1]); 
	TL_SetColor( Value2, Div.Color.up );
	TL_SetSize(  Value2, Line.Size  );
End;


If 
	Condition32 and Condition42
	AND H[oPivotBar11] <= H[oPivotBar12] 
	AND DToscK[oPivotBar11] > DToscK[oPivotBar12] then 
Begin
	Value12 = TL_New_SELF(D[oPivotBar12], T[oPivotBar12], DToscK[oPivotBar12], D[oPivotBar11], T[oPivotBar11], DToscK[oPivotBar11]); 
	TL_SetColor( Value12, HD.Color.down );
	TL_SetSize(  Value12, Line.Size  );
End;

	If 
	Condition32 and Condition42
	AND H[oPivotBar12] <= H[oPivotBar11] 
	AND DToscK[oPivotBar12] > DToscK[oPivotBar11] then 
Begin
	Value12 = TL_New_SELF(D[oPivotBar12], T[oPivotBar12], DToscK[oPivotBar12], D[oPivotBar11], T[oPivotBar11], DToscK[oPivotBar11]); 
	TL_SetColor( Value12, Div.Color.down );
	TL_SetSize(  Value12, Line.Size  );
End;

Plot1( DToscK, "stochrsi",      blue );
plot2( 20,    "oversold", white);
plot3(80, "overbought", white);

5aa7100cde519_Diverror.jpg.a59e3484a14dfcc6ce4cbdd8d42b3eab.jpg

Share this post


Link to post
Share on other sites

It is "normal"

 

Unfortunately pivot is not a RT function

 

Suggestion

 

RightStrength(2),

 

try 2 put 2 and U'll have 2 wait 2 bars instead of 3

 

**************************

 

The PPivot function returns the value of a pivot point and the number of bars ago the pivot occurred.

 

RightStrength

 

Numeric

 

Sets the required number of bars on the right side of the pivot bar.

 

*************************************

 

aaa

 

*************************

 

PS I'm wondering how 2 trade if we have 2 wait 3 bars (45 mns delay in your resolution) 2 have a signal ?!

 

Same problem with Carter scalper

 

After Observing during a long time a market, we can visualy anticipate a divergence with prior signs

 

IMO it's interesting 2 put an order at The anticipated level at the opposite of the trend (A kangourou tail where traders changing position)

and after waiting 4 a div or any kind of other confirmation

or exit with a quick profit

 

If it works, it's like a lift rocket !

 

But it is risky Bcoz we can get killed many times B4 it works

 

And then

 

A traders enters after, when the divergence signal is confirmed

 

B There is a DT/DB and it was an 2 early entry

 

C Or the trend keep going and the stop is reached

 

Not easy

 

At the end it's a matter of observation and intuitive quick decision + strong stomach

 

********************************

 

On your graph we can C

 

a kangourou trail ( in fact 1 + 1 the second one killed the first one)

 

a lift rocket

 

DB with certainly a divergence

 

and then the trend changes at the broken line where there was certainly a lot of stop buy orders above

 

So what should we do after 1:00 AM ?

 

Take profit ?

 

Trust in the hidden div and hold our position ?

Edited by aaa

Share this post


Link to post
Share on other sites

I've been using the divergence as the first trigger followed by a trend change (ttm trend) as confirmation. I finally noticed on the higher time frames (hourly, daily) that the trigger was way to slow.

 

I use the 15min, 1hr, etc as a signal for the direction I want to trade in and use a 3 min chart for entry.

 

I'll try changing the right strength to 2, why not use 1?

Share this post


Link to post
Share on other sites

I'll try changing the right strength to 2, why not use 1?

 

Put 3 charts on the same screen

 

Put right strength to 1

 

Put right strength to 2

 

Put right strength to 3

 

in each screen

 

and choose the one which suits U best

Share this post


Link to post
Share on other sites

I was being fictitious on the rightstrenth of 1.

 

Is it possible to have the indicator plot the divergence line, even though you have to wait the 3 bars for confirmation.

 

For example, TTM Trend for example will paint the current bar the anticipated colour before the bar closes. Would that be possible for this indicator where it plots the potential divergence as its happening rather than after the fact?

Share this post


Link to post
Share on other sites

What is the Tradestation equivalent for TL_New ( I assume this is an array or variable for the new "reverse divergent" trendline to be plotted next... but is undefined and therefore unrecognized in TS.

 

snowbird

Share this post


Link to post
Share on other sites
What is the Tradestation equivalent for TL_New ( I assume this is an array or variable for the new "reverse divergent" trendline to be plotted next... but is undefined and therefore unrecognized in TS.

 

snowbird

 

press the [F1] key and see...

 

TL_NEW is available in recent releases of TradeStation, but not in the older version (eg. T2000).

Share this post


Link to post
Share on other sites

Would that be possible for this indicator where it plots the potential divergence as its happening rather than after the fact?

 

With pivot function, I'm afraid that not less than 1 bar on the right side of the pivot bar...

 

The Pivot function returns the value of a pivot point and the number of bars ago the pivot occurred.

 

RightStrength = Sets the required number of bars on the right side of the pivot bar.

 

********************************

 

But keep "optimistic", as TAMS wrote ;)

 

anything is POSSIBLE

 

if you can visualize it, quantify it, articulate it, you can code it.

Edited by aaa

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Date: 22nd January 2025.   Netflix Earnings Surge Driving the NASDAQ to Monthly Highs!   The NASDAQ increases in value for a fourth consecutive day, gaining momentum after Netflix stocks rise more than 15%. Earnings reports are gaining speed for the technology sector, but why has Netflix stocks seen such a high and sudden rise in demand? Netflix Stocks Increase 15% Supporting the NASDAQ! Netflix stocks have been one of the best-performing stocks within the NASDAQ, rising more than 79% in 12 months. However, even for Netflix, a 15% rise in less than 24 hours is considered substantial. The quarterly earnings report was made public by Netflix after the market closed on Tuesday. The earnings report confirmed the following: Netflix beat their earnings per share expectations - $4.27 reported vs $4.21 expectations. Netflix’s revenue surpasses the previous quarter - $10.25 billion this quarter vs $9.82 billion in the previous quarter. The online streaming company confirms projects to expand into live sport and event streaming will proceed. In addition to this, the company’s forward guidance for 2025 remains positive. Netflix is the 10th most influential company for the NASDAQ meaning the positive earnings data and bullish price movement supports the overall price of the NASDAQ. In addition to this, the positive earnings improve the sentiment towards the entire US technology sector. Investors will now turn their attention to the quarterly earnings report for Intuitive Surgical. Intuitive Surgical stocks on Tuesday rose 1.94%. How is the Economy And Politics Affecting the NASDAQ?     The US stock market is witnessing an upward correction after struggling in the last weeks of 2024. The bullish price movement is a result of a sharp decline in bond yields, the new US administration and earnings season. Investors remain relieved that bond yields have fallen back down from the 5.00% level. If bond yields continue to decline further, particularly below 4.50%, the move would be deemed as positive for the US stock market. President Trump took office on Monday and so far the pro-US rhetoric from the President, Vice President and Secretary of State continues to support the stock market. So far, the main concern is how upcoming tariffs can negatively affect inflation and growth. However, some economists advise tariffs will become the “norm” and may have a lesser effect compared to 2018. However, this is something traders will continue to evaluate and monitor. The VIX this morning fell 0.83% lower and trades more than 5.70% lower over a 7-days. The lower VIX indicates a higher risk appetite towards the stock market. If the VIX continues to decline a strong buy indication may materialize. On the most influential stocks for the NASDAQ, 82% rose in value on Tuesday. However, Apple stocks, the most impactful stock, fell 3.19% due to poor sell data. If Apple stocks continue to decline, the NASDAQ’s upward trend may come under strain. In the meantime, investors over the next week will continue to monitor upcoming earnings reports. NASDAQ - Technical Analysis The price of the index is trading significantly higher than all Moving Averages on a 2-hour timeframe and relatively high on oscillators. These factors indicate that buyers are controlling the order book. However, price action also confirms the latest impulse wave measures 3.43% which is normally the point at which the index retraces. This is something that investors may also consider. The retracement potentially also may be triggered by Netflix buyers quickly selling to cash in profit after the sudden 15% bullish surge. If a retracement does indeed form, price action and the 75-period EMA indicates that the pullback may drop as low as $21,391.30.     Key Takeaways: The NASDAQ increases in value for a fourth consecutive day, but price action signals a possible retracement before continuing its bullish trend. Netflix stocks increase more than 15% due to strong earnings data. Netflix beat earnings and revenue expectations by 1.39% and confirmed projects to add live sports streaming to its platforms. The VIX trades more than 5.70% lower over a 7-days and US Bond Yields remain at recent lows. On the most influential stocks for the NASDAQ, 82% rose in value on Tuesday. Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news. Michalis Efthymiou HFMarkets Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • DASH DoorDash stock, watch for a top of range breakout at https://stockconsultant.com/?DASH
    • SYF Synchrony Financial stock with a top of range breakout at https://stockconsultant.com/?SYF
    • RKLB Rocket Labstock, big rally off support and breakout at https://stockconsultant.com/?RKLB
    • RDW Redwire stock, what a launch off the 14.16 support area at https://stockconsultant.com/?RDW
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.