The Middle indicator

post your indicators here

Moderator: moderators

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

forex

Postby TheRumpledOne » Sat Jun 17, 2006 4:07 pm

FOREX First grade now in session :lol:

Trade in the direction of the last middle cross.

Use a 60 minute chart.

If the price crosses above the middle of the previous candle, buy. Then if the price crosses below the middle of the current candle, sell.


If the price crosses below the middle of the previous candle, sell. Then if the price above below the middle of the current candle, buy.

Use this as a "compass" to indicate trade direction.

In the screen shot, the magenta "+" is the previous candle's middle and the cyan "+" is the current candle's middle.

Do you see how the price crosses for a profit?

Watch it happen a few times to build your confidence, then start pipping away!

CLASS DISMISSED 8)
Attachments
EURUSD_60MIN_MIDDLE_2006JUN16.jpg
EURUSD_60MIN_MIDDLE_2006JUN16.jpg (58.82 KiB) Viewed 7141 times

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
TomKeough
rank: <50 posts
rank: <50 posts
Posts: 29
Joined: Sat Jun 17, 2006 1:13 am
Reputation: 0
Location: Jacksonville, Florida
Real name: Tom Keough
Gender: Male
Contact:

Outstanding Site Michal

Postby TomKeough » Sun Jun 18, 2006 9:19 am

I remember you, TRO from the TradeStation site. I used to use 2000i and have switched to NeoTicker.

Good to see you.
Tom Keough
Last edited by TomKeough on Mon Jun 19, 2006 11:46 pm, edited 1 time in total.
"We either make ourselves miserable,
or we make ourselves strong.
The amount of work is the same."
- Carlos Castaneda

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

OLD SCHOOL MIDDLE INDICATOR

Postby TheRumpledOne » Mon Jun 19, 2006 10:24 pm

I went back to my "roots" with this SLOT MACHINE VERSION of the Middle Trend Indicator.



CxPM is the close crossing the Previous Middle

CxM is the close crossing the Current Middle

MxPM is the current middle crossing the previous middle

PM is the previous middle crossing the prievious middle 1 bar ago.

The colors/symbols let you know which way the trade is going!
Attachments
SM_TREND_MIDDLE.ELD
(4.96 KiB) Downloaded 371 times

User avatar
eagles
rank: <50 posts
rank: <50 posts
Posts: 28
Joined: Mon May 22, 2006 6:38 pm
Reputation: 0
Location: Plano, TX
Gender: Male

Postby eagles » Wed Jun 21, 2006 10:19 pm

TRO,
An interesting phenomenon with the _TR_PB_Middle. I put both 60 min & 5 min in the same workspace as data1 and data2 with the PB Middle on both data1 and data2.

If I put the 60 min as data1 and 5 min as data2, the paint bar looks fine on the 60 min plot, but on the 5 min it only paints the bars 'on the hour'.

If I put the 5 min as data1 and 60 min as data2, the paint bar looks correct on both plots. (Matched against separate window with PB Middle on each time frame.)

I have looked at the code and there doesn't appear to be anything that would cause this result.

Not sure why this is happening, but I guess I can use the data1 and data2 setup that is giving the correct answer.

Any thoughts on a cause?

Regards,
Jack

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Wed Jun 21, 2006 11:55 pm

eagles wrote:TRO,
An interesting phenomenon with the _TR_PB_Middle. I put both 60 min & 5 min in the same workspace as data1 and data2 with the PB Middle on both data1 and data2.

If I put the 60 min as data1 and 5 min as data2, the paint bar looks fine on the 60 min plot, but on the 5 min it only paints the bars 'on the hour'.

If I put the 5 min as data1 and 60 min as data2, the paint bar looks correct on both plots. (Matched against separate window with PB Middle on each time frame.)

I have looked at the code and there doesn't appear to be anything that would cause this result.

Not sure why this is happening, but I guess I can use the data1 and data2 setup that is giving the correct answer.

Any thoughts on a cause?

Regards,
Jack


Make sure you have the subplot right on both instances of the middle paint bar.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

jhtumblin
rank: 50+ posts
rank: 50+ posts
Posts: 113
Joined: Tue Jun 13, 2006 3:42 am
Reputation: 0
Location: Atlanta, GA
Gender: None specified

Postby jhtumblin » Thu Jun 22, 2006 12:58 am

Interesting that you just happend to post about the 60 min overlay on the 5 min. I just happened to modify the showme a few nights ago just to serve this purpose.

Instructions: Load up a 1,5,3 or whatever chart and then insert the 30 or 60 min chart on top of that. Apply this indicator to the larger timeframe and it will mark the previous bar's middle in purple and the current middle in yellow underneath the smaller timeframe.

There is code commented out where I attempted to draw trendlines to the prior bar, but it just kept drawing a new trendline for the current middle every time the price updated, resutling in 3 billion lines which lags out the chart eventually. If anybody can fix that, I think it would be better than what it is now.

Code: Select all

//[LegacyColorValue = true];

//Middle Showme Overlay
//Original Work: Avery Horton
//Modified: Jarrad Tumblin
//06-15-06



inputs:
   
   trendColorPrev(RGB(170,85,255)),
   trendColorCur(RGB(255,255,0)),
   
   iPlotColor(magenta),
   iPlotColor2(cyan);
   

Variables:
   
   PrevMid( 0 ),
   CurMid(0),
   CurEnd(0),
   aTrendLineID( 0 ),
    bTrendLineID(0),
   aTrendLineAction3(0),
   bTrendLineAction3(0),
   aOldKey(-1),
   bOldKey(-1);

//Calculations

   PrevMid = (High[1] + Low[1]) / 2;
   CurMid = (High + Low) / 2;
   CurEnd = CurMid;



plot1( PrevMid, "PrevMid", trendColorPrev);
plot2( CurMid, "CurMid", trendColorCur);

{If LastBarOnChart then
   begin
       
     aOldKey = aTrendLineID;
      aTrendLineID = TL_New(date, time, PrevMid, date[1], time[1], ((High + Low) / 2)[1]);
     TL_SetColor(aTrendLineID, trendColorPrev);
     TL_SetSize(aTrendLineID, 2);
    
   
     bOldKey = bTrendLineID;
     bTrendLineID = TL_New(date, time, CurMid, date[1], time[1], CurEnd);
     TL_SetColor(bTrendLineID, trendColorCur);
     TL_SetSize(bTrendLineID, 2);
    
     if aOldKey <> -1 then begin
        aTrendLineAction3 = TL_Delete(aOldKey);
      aOldKey = -1;

        
     if bOldKey <> -1 then begin
         bTrendLineAction3 = TL_Delete(bOldKey);
      bOldKey = -1;
   

end;
end;
end;}



ScreenShot: The Orange bars are the 60 min overlay.


User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

LOOKS LIKE I AM NOT THE ONLY ONE WORKING THE MIDDLE !

Postby TheRumpledOne » Sun Jun 25, 2006 1:42 pm

LOOKS LIKE I AM NOT THE ONLY ONE WORKING THE MIDDLE !

http://www.currencytradermag.com/mbe70.htm

Download the previous month and look at page 30.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Mon Jun 26, 2006 1:22 am

jhtumblin

Are you using charts because you don't have radar?

I would much rather let radar analyze multiple time frames:



I can quickly see if I should enter/wait or hold/exit on 6 time frames.

Chart's advantage is historical perspective but having the computer give me trading signals on radar is a bigger advantage, IMHO.

Not to mention the computer does all the calculations for me. I know exactly how far the price is from the middle... I don't have to process that off the chart. !

jhtumblin
rank: 50+ posts
rank: 50+ posts
Posts: 113
Joined: Tue Jun 13, 2006 3:42 am
Reputation: 0
Location: Atlanta, GA
Gender: None specified

Postby jhtumblin » Mon Jun 26, 2006 2:31 am

I do have radar and I agree with you about having a quicker reference, however I am so accustomed to discretionary trading based on Richard Wyckoff's methods that I rarely reference it.

I don't even trade the middle right now (blasphemy?) even though I think you have developed a great system and the profit potential is solid. Either way I have many opinions and few conclusions, so I will continue to investigate everything until probably the end of time.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Mon Jun 26, 2006 4:01 am

Would you please post your Richard Wyckoff's methods entry/exit rules?
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “Tradestation indicators”