Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. Its absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #11 (permalink)  
Old 06-08-2006, 01:10 AM
Junior Member
 
Join Date: Feb 2006
Posts: 4
nate3814 is on a distinguished road
Esignal EFS file

I have this Market Profile EFS file for eSignal that allows you to select the number of days back to look and then the number of bars forward. It also allows you to select an offset period so that large overlays (ex. 20 days) can be moved forward and viewed without having to scroll back. I am not a programmer, and have no idea how difficult it is to convert this to a Metrader study, but I am posting it if someone is interested. I will copy the code and post it in a word document, and also try to post it as a zip file. I will also post a screen shot from eSignal.
Attached Images
File Type: jpg ScreenHunter_1.jpg (162.8 KB, 1969 views)
Attached Files
File Type: zip Market Profile.zip (3.3 KB, 535 views)
File Type: doc MP EFS.doc (77.5 KB, 470 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #12 (permalink)  
Old 06-08-2006, 01:14 AM
Junior Member
 
Join Date: Feb 2006
Posts: 4
nate3814 is on a distinguished road
Tradestation Code

I also found the following Tradestation Code
Attached Files
File Type: doc Tradestation MP.doc (22.5 KB, 276 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #13 (permalink)  
Old 06-09-2006, 05:00 PM
DanielTyrkiel's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 176
DanielTyrkiel is on a distinguished road
Quote:
Originally Posted by Beluck
market profile indicator
Thank you for the indicator Beluck. I was just looking for it Have you ever had this feeling that the price is going to go up or down from being close to an S/R level? I think this could be a good confirmation of such a feeling what a feeeeeeeeliiin'
One quick q. what do the colors mean?

Sorry, I see now

Last edited by DanielTyrkiel; 06-09-2006 at 05:30 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #14 (permalink)  
Old 07-19-2006, 01:04 PM
apfx's Avatar
Junior Member
 
Join Date: Dec 2005
Posts: 18
apfx is on a distinguished road
Market Profile

This is the code in Amibroker Formula Languange it shouldn't be very difficult to translate into MQL4.

//Market Profile

//===========================

Den = Param("Density", 40, 10, 100, 10);
ShowMP = ParamToggle("Show MP", "No|Yes");
ShowVP = ParamToggle("Show VP", "No|Yes");
StyleMP = ParamStyle("style MP", styleLine, maskAll);
StyleVP = ParamStyle("style VP", styleLine, maskAll);

//===========================
BarsInDay = BarsSince(Day() != Ref(Day(), -1)) + 1;

//===========================
NewDay = Day() != Ref(Day(), 1) OR Cum(1) == BarCount;

//===========================
Bot = TimeFrameGetPrice("L", inDaily, 0);
Top = TimeFrameGetPrice("H", inDaily, 0);
Vol = TimeFrameGetPrice("V", inDaily, 0);

//===========================

Range = Highest(Top-Bot);
Box = Range/Den;
VolumeUnit = Vol/BarsInDay;

for (k = 0; k < Den; k++) // loop through each line (price) starting at the Lowest price
{
Line = Bot + k*Box;
detect = Line >= L & Line <= H;

if(ShowMP == True)
{
CountMPString = IIf(NewDay, Sum(detect, BarsInDay), 0);
CountMPString = Ref(ValueWhen(NewDay, CountMPString, 0),-1);
MpLine = IIf(CountMPString >= BarsInDay, Line, Null);

Plot(MPLine, "", colorRed, styleMP);
}

if(ShowVP == True)
{
CountVPString = IIf(NewDay, um(detect*V,arsInDay)/VolumeUnit,0);
CountVPString = Ref(ValueWhen(NewDay, CountVPString, 0), -1);
VpLine = IIf(CountVPString >= BarsInDay, Line + Box/4, Null);

Plot(VPLine, "", colorBlue, styleVP);
}
}

Last edited by apfx; 07-19-2006 at 01:11 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #15 (permalink)  
Old 09-12-2006, 05:55 PM
secxces's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 89
secxces is on a distinguished road
Market Profiles are extremely interesting, but I have yet to see one available for the SpotFX markets. Im not sure one even exists in MT4 platform. Although, I have seen on here one that is a basic graph chart but not a real market profile chart (Based upon alphbetic charts).

TO THE PROGRAMMERS: You all might find this very very interesting. In fact, this might be a project one of the coders on the boards, may find a little tricker then others. Im not sure, the above coding is correct, it proabably is, but I will look thru and see if I can find a similar code. However though, I dont think its possible to code market profile in MT4. You need alot of space and area to create the graphs from the data. It essentially is an entire graph replacing the bar charts.


BUT, IF ANYONE TAKES A STAB AT IT, MY HATS OFF TO YOU.

Thanks,

-secXces
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #16 (permalink)  
Old 09-12-2006, 07:02 PM
DanielTyrkiel's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 176
DanielTyrkiel is on a distinguished road
Well, this isn't the translation of the code posted above, but see if this could be of any help to you.
Attached Files
File Type: mq4 marketprofile.mq4 (4.7 KB, 428 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #17 (permalink)  
Old 09-12-2006, 08:59 PM
secxces's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 89
secxces is on a distinguished road
I am aware of that indicator. Its a simple graph of a market profile. Doesnt accuratly show a true market profile.

Heres some video links from the cbot.com website, you have to put in yuor information to view the video.

http://www.cbot.com/cbot/pub/cont_de...+39794,00.html

secXces
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #18 (permalink)  
Old 09-13-2006, 08:31 AM
Member
 
Join Date: Sep 2006
Posts: 30
moldem is on a distinguished road
I don't understand. I filled out the registration info, but I cannot view the video. It sends me to a 'http not found' page.

Why do they require the same registration info for each archived video?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #19 (permalink)  
Old 11-29-2006, 08:58 AM
daraknor's Avatar
Senior Member
 
Join Date: Oct 2006
Location: Portland, OR USA
Posts: 996
daraknor is on a distinguished road
Has anyone noticed a strong correlation between reversal points and Prive-Volume-Time interactions? I would think only a weak correlation would exist, and only on the extremes. (less volume = greater chance of support/resist line). The most effective support/resist have 0 trading, because they are never touched...

What would be the purpose of this? Volume over time would tell me when the Over The Counter market is open.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #20 (permalink)  
Old 11-29-2006, 09:05 AM
Trading MM's Avatar
Member
 
Join Date: Aug 2006
Posts: 74
Trading MM is on a distinguished road
Quote:
Originally Posted by daraknor
Has anyone noticed a strong correlation between reversal points and Prive-Volume-Time interactions? I would think only a weak correlation would exist, and only on the extremes. (less volume = greater chance of support/resist line). The most effective support/resist have 0 trading, because they are never touched...

What would be the purpose of this? Volume over time would tell me when the Over The Counter market is open.
High volume = price acceptance, often it trades back (support/resistance) to these prior day(s) levels

The shape of the profile can teach you a lot too. short- or long covering etc etc
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
forex market profile, market, market price, Market Profile, market profile for Metatrader, market profile forex, market profile indicator, market profile indicator for mt4, market profile indicator forex, market profile indicator mt4, market profile metatrader, market profile mq4, market profile mql4, Market Profile mt4, market profile mt4 indicator, market profile trading, MarketProfile, marketprofile metatrader, MarketProfile.mq4, MetaTrader Market Profile, metatrader market profile indicator, mt4 market profile, ماركت بروفايل


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump


All times are GMT. The time now is 04:19 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.