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.

9146894me

Help with Simple Show Me

Recommended Posts

I suggest you take a look at the code for Head & Shoulders ShowMe within TS for example of how to find these patterns. These are not simple one, two or three bar patterns (for example, looking for a doji, which is basically Open=Close for the current bar) and it requires looking at pivots or swing bars over many bars (could be dozens of bars). The code for H&S is about 200 lines. In addition, no two independent implementation of these indicators will look exactly the same because there are too many variables involved.

Even if you don't do Easylanguage, you could start by drawing a few bars of what the rules entailed in the pictures you posted and see if you could have defined them mathmatically (e.g., H[4] < H[3] AND H[3] = H[1] AND C[3] <> H[3] AND C[1] <> H[1] AND C[0] < L[1] in the simplest 5 bar permutation for the Double top reversal bar pattern).

Share this post


Link to post
Share on other sites

Now I see a sample chart of the bars in question I can see why you say they are simple. In real life, you won't find too many adjacent bar double top or double bottoms like that (I don't think the sample chart is even an actual chart). If you just want to program such a pattern, the logic provided above (or similar logic) will let you program such pattern matching in EL, but you are unlikely to find many matches. There are a lot more practical three bar group patterns you can explore, for example the ones mention in Suri's book

 

{Suri TBG1; Go Long above H[3]}

if H[3] > H[2] and C[2] < C[1] and L[1] > L[2] and H[1] > H[2] and C > H[3] then
TB1Long = true
	else
TB1Long = false ;


{Suri TBG2; Go Long above H[2]}

if H[3] > H[2] and C[2] < C[1] and L[2] < L[3] and O[1] < C[2] and C[1] > C[2] and 
L[1] < L[2] and C > H[2] then
	TB2Long = true
else
	TB2Long = false ;


{Suri TBG3; Go Long above H[1]}

if H[3] > H[2] and C[2] < C[3] and O[1] > C[2] and H[1] > H[3] and
C > H[1] then
TB3Long = true
	else
TB3Long = false ;


{Suri TBG4; Go Long above H[3]}

if H[3] > H[2] and H[2] > H[1] and L[3] < L[2] and L[2] < L[1] and C > H[3] then
TB4Long = true
	else
TB4Long = false ;


{Suri TBG4; Go Short below L[3]}

if L[3] < L[2] and L[2] < L[1] and H[3] > H[2] and H[2] > H[1] and C < L[3] then

TB4Short = true
	else
TB4Short = false ;




 

The first ELD ...SURIBARS below is not an actual indicator, just the functions for matching the three bar groups pattern. The second ELD, ...SURI.CANDLEREADER is an indicator, capable of matching several candle stick patterns, written by Suri. You should be able to use that as an example to explore more simple patterns.

20070716084205SURIBARS 1.ELD

20061205194606SURI.CANDLEREADER.ELD

Share this post


Link to post
Share on other sites

Again Thank You, I hope others will benifit from the code also. I will soon contribute some code and Ideas I came across. Ultimatly what i am looking for is:

Find a confirmed major pivot P1

Confirm a P2 pivot

Get a P3 pivot that dosent exceed the P1 pivot and enter on the reversal bar types above. But rather than just seeing them on the chart I thought getting a plot after the conditions above have occured would be a excellent entry. (providing the trend is in your direction and others). But overall finding major reversals in the market and trading with them would be a low risk place to enter trend changes.

Share this post


Link to post
Share on other sites
http://www.surinotes.com/tradestation/articles/TradingABCs.html

Suri seems to have an auto ABC with Fib projections for the C pivot. This is very similar to what I am looking for. Is this indicator available? Is the code in his book? Thanks to all!

Not that I am aware of. Suri has begun to market quite of few of his indicators, although the prices are not explicitly listed on his website. The closest free indicator is the Suri ZigzagFib from the TS forum.

Share this post


Link to post
Share on other sites
Again Thank You, I hope others will benifit from the code also. I will soon contribute some code and Ideas I came across.....

 

still awaiting your contribution..... .....

Share this post


Link to post
Share on other sites

Hi

 

Suri has Xcellent ideas 2 build personnalized indicators

 

 

attachment.php?attachmentid=21211&stc=1&d=1275122164

 

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

 

Like this one

 

attachment.php?attachmentid=21210&stc=1&d=1275122164

Snap2.jpg.ebd767dd658ce6d834ca1ca9dc3b7016.jpg

5aa7100c81d38_ABCwithreversalbarlongexample.jpg.b653aae8540314b9ba8707742d3d5b40.jpg

Edited by aaa

Share this post


Link to post
Share on other sites

I can find Pivot A and Pivot B then I want Pivot C to less than Pivot A and enter on the reversal bar.

 

So maybe a showme that plots a dot above or below depaening on direction every reversal bar that happens to see it better so would I need a higher high and a equal or lower close than the previous bar to plot?

 

Maybe something is already offer that will plot this. I know there will be tons of plots but I can filter most out by the C pivot to be equal or less than the A pivot.

 

So A would be confirmed and B would be confirmed then I would look for the c pivot and watch the reversal bars plot from that point on.

5aa7100cd9c16_reversalbarc.jpg.7c5a7fd9d3be69ba3c8fb105c1c96876.jpg

Share this post


Link to post
Share on other sites

I can find Pivot A and Pivot B then I want Pivot C to less than Pivot A and enter on the reversal bar.

 

So maybe a showme that plots a dot above or below depaening on direction every reversal bar that happens to see it better so would I need a higher high and a equal or lower close than the previous bar to plot?

 

Maybe something is already offer that will plot this. I know there will be tons of plots but I can filter most out by the C pivot to be equal or less than the A pivot.

 

So A would be confirmed and B would be confirmed then I would look for the c pivot and watch the reversal bars plot from that point on.

5aa7100ce1982_reversalbarc.jpg.f4fa2e330bcc78f28d1cd80106ae8de0.jpg

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

    • ...hallucinates.... Student: “What if we gave the monkey LSD?” Guru: “The monkey already did LSD”
    • Question: To those that had/have cancer, what were the signs that made you think “something is not right here” to make you go see a doctor? Answer: So, 5/25/2018, I woke up, got ready for work, and as I walked to my car, I started gagging. Like something was stuck in my throat and I needed to clear it. And then it went away.   But 10 minutes after that, I was T-boned at 40mph on the driver side door. But what made me see a doctor was while my muscles felt better and bruises were going away, the gagging still continued, I started having fevers, my neck felt swollen, I was having such a hard time breathing, and I'd have random sharp pains in my chest, but not from where the seat belt saved me.   2 weeks after the accident, I finally see an urgent care doctor, who looks me over, tells me I'm fine, but luckily requests a neck X-ray. And I ask for a chest X-ray, which he rolls his eyes but let me have (most of my pain was in the neck, so I understand).   The very next day, he calls and says “So, that chest X-ray shows there's a 4 inch mass on your heart and lungs, and your lungs have been filling up with fluid, as well as in your pericardial (heart) wall. We need you to come in tomorrow.”   Turns out the big mass, due to the accident, caused my heart and lungs to tear and fill with fluid, the swollen neck and gagging was caused by 2 metastasized tumors, and the fevers and weight loss were symptoms. Stage 4b Hodgkin's Lymphoma.   But thankfully, we went very aggressive with chemo (and had a lot of bad side effects that don't normally happen to patients), and now I'm about 16 months cancer-free. Yay lucky X-rays! Rachel Jurina, Quora Source: https://www.quora.com/To-those-that-had-have-cancer-what-were-the-signs-that-made-you-think-something-is-not-right-here-to-make-you-go-see-a-doctor   Profits from free accurate cryptos signals: https://www.predictmag.com/  
    • As a man, the reality of life is the harshest part. I don’t mind looking older or becoming weaker over time; it’s nature.   Have you ever heard that the only people who will be loved unconditionally are women and children? Men will only be loved as long as they can provide until they are no longer needed. It doesn’t matter if you already did your best to get your kids to the best school or get the best things for them, if you stop before they’re done with it, there will be no thank you. The only thing they will remember is that they have to quit school at 15, ignoring all the previous 15 years of life you provided for them. The only people who will accept you, no matter what, are your parents. But in this situation, you might be that ungrateful child.   EDIT: Wow, I didn’t think this would get so much attention.   For those who disagree, I can only say that everyone has their problem. If you don’t get the chance to face such a thing, be grateful. Remember, sometimes what you throw in the garbage is something that someone wishes ever to have.” – ElZee, Quora   Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • The good thing i had noticed so far is that the traderpot value is also on the rise..
    • yup its a gradual rollout the right way in my opinion, its really good and its exciting for the sto in 2027
×
×
  • Create New...

Important Information

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