Welcome to the Traders Laboratory Forums.
Market Profile Are you a market profile trader? Post here.

Reply
Old 11-05-2010, 01:28 AM   #9

Join Date: Oct 2010
Posts: 7
Ignore this user

Thanks: 20
Thanked 0 Times in 0 Posts

Re: Historical MP Day Types and Open Types?

why don't we discuss about the opening price concept and get the views
sundaram iyer is offline  
Reply With Quote
Old 11-06-2010, 02:27 AM   #10

Join Date: Aug 2008
Location: New York
Posts: 16
Ignore this user

Thanks: 0
Thanked 4 Times in 4 Posts

Re: Historical MP Day Types and Open Types?

pH, is there a statistical hypothesis you're trying to prove? A correlation of serial day types?

I can download about 5 months of 30-min OHLC bars from eSignal (I think CQG users can get longer history).

Do you have IF-THEN-ELSE-like programmable rules that define the classic MP day types?

Do you need something more detailed than 30 minute OHLC bars?
AldPixto is offline  
Reply With Quote
Old 01-24-2012, 10:58 AM   #11

alex_laxya's Avatar

Join Date: Aug 2008
Location: pune
Posts: 61
Ignore this user

Thanks: 66
Thanked 43 Times in 17 Posts

Re: Historical MP Day Types and Open Types?

I am also working on the same concept. I have coded few open types but those codes I found are little rough especially those types where we need to see previous support/resistance areas. EX. Open Test Drive, here market test previous support to check if there is any buying interest remain and afterwords it goes up. Now to see what was the support area previous day is challenging to code. So I have just added today's opening price action. Here is an example for open drive

Code:
inputs:timeopen(0945);
vars:od(0);
od = (h-l)*4/5 ;
condition1 = (h-l) >= ((o - l) + od) and
 time<= timeopen;
condition2 = close>open and (h-l)> average((h-l),10);
condition3 = low> low[1] + ((h[1]-l[1])/2) and c >c[1];
if condition1 and condition2 and condition3 then
value1 = text_new ( date, time, open, "OD");
It's coded in MC. When you apply on the chart and open drive conditions are true then Text will print below the bar ( Text : OD )
See if the logic is correct, would post other codes for other open types.

While going through statistical details about type of open and market trend I have found market takes at least 2 hour to establish which type of open is it. If we tried to make assumptions based on first half an hour then it is not that accurate ( Theory says first half or 1 hr )
alex_laxya is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
[MP] Trading with Market Profile Soultrader Market Profile 242 12-22-2011 05:58 AM
Reading Charts in Real Time thalestrader Trading and the Markets 6460 11-03-2011 10:49 AM
Open E Cry (OEC) Sells Out to OptionsExpress for $18M forsearch Brokers and Data Feeds 6 06-27-2008 12:57 PM
Wisdom From Various Classic Books idaxtrader The Candlestick Corner 28 04-27-2008 07:26 AM
Opening Types and Trader Confidence Soultrader Market Profile 4 03-06-2007 02:38 PM

All times are GMT -4. The time now is 04:08 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.