|
More site info...
MetaTrader Forum | Forum profile
|
|
Forum profile page for MetaTrader Forum on http://www.forexfactory.com.
This report page is the aggregated overview from a single forum: MetaTrader Forum, located on the Message Board at http://www.forexfactory.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "MetaTrader Forum" on the Message Board at http://www.forexfactory.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on MetaTrader Forum:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
108
|
273
|
820
|
|
Post:
|
265
|
765
|
2,768
|
|
|
MetaTrader Forum Posting activity graph:
|
Top authors during last week:
user's latest post:
Rolling Candle Display
Published (2009-11-25 16:06:00)
Quote: Originally Posted by mrgreen I am looking for what I term a rolling candle display. Does this help? (It's a long time since I looked at it, can't recall exactly how it works). As kd3726 points out, you can hide the 'base MT4' candles by selecting a line graph (press Alt-3), then press F8 and change the Line Graph color to None.
user's latest post:
EA programming - STUCK - Pls Help
Published (2009-11-25 16:08:00)
hey aggs..... just count orders by type.... such as below..... correct the magicnumber part if need be......h Code: int start() { //---- if(CountType(OP_BUYSTOP) == 0) { // do something } //---- if(CountType(OP_BUYLIMIT) == 0) { // do something } return(0); } int CountType(int type) { int count=0; for(int i = 0; i < OrdersTotal(); i++) { OrderSelect(i,SELECT_BY_POS,MODE_TRADES); if( OrderSymbol()!=Symbol() /*|| OrderMagicNumber() !=...
user's latest post:
EA programming - STUCK - Pls Help
Published (2009-11-25 16:08:00)
And in addition to that i would make myself a library that contains all these useful functions (like the CountType() example from the posting above) that you will need over and over again in all the EAs that you will write in the future. You will save yourself a lot of time and duplicated code.
user's latest post:
functions that come in handy
Published (2009-11-18 18:08:00)
i made a few functions that makes it easier for visuals, since you guys have helped me i thought i would donate these void LineMaker(string name,color LineColor,double price, string Description){ ObjectCreate(name, OBJ_HLINE, 0,TimeCurrent(),price); ObjectSet(name, OBJPROP_STYLE, STYLE_SOLID); ObjectSet(name, OBJPROP_COLOR, LineColor); ObjectSet(name, OBJPROP_BACK, true); ObjectSetText(name,Description,8,"A rial",LineColor);...
user's latest post:
Candle time left?
Published (2009-11-25 16:06:00)
Here is one from the THV thread:
user's latest post:
Renko Block Charts - Page 32 @...
Published (2009-11-25 16:06:00)
Quote: Originally Posted by der stratege i didn't know that you can use RenkoChart into the backtester, do you? go to strategie tester and choose RenkoLiveChart as ExpertAdvisor. choose M1 for backtest TF. in the EA setting switch EnableOnlineChart to false. start visual backtester in Pause-Mode and the usual M1 TF Chart starts. Now go to OfflineChart in the Filemenu and choose the Timerframe which are converted into Renkos and open...
user's latest post:
Indicator Refresh
Published (2009-11-25 16:11:00)
We been working on an indicator and now have a situation where it's not refreshing properly.....I think the picture tells the story. I'm attaching the indicators and templates. The indicator with the refresh issue is MTF_Trix_11barsvbob6.mq4. Can anyone help? Cheers CanuckCT
user's latest post:
Trendfinder that compares 28...
Published (2009-11-25 15:54:00)
Does anyone know how to create labels in a separate window. I would like the symbols of the 8 currencies to show in a separate window and next to the symbol I would like the value of that currency to show. I would like the text to be with big fonts so it is easy to see. If anyone will help me with this it will be greatly appreciated.
user's latest post:
I code your Expert Advisors /...
Published (2009-11-25 15:58:00)
Quote: Originally Posted by krmo Hello, Is there anyone who would be willing to write an indicator for me? The concept is to draw lines from Fractals to current time until price crosses them at which point they stop. _I would want to have one color for upper fractal lines and another color for lower fractal lines. _I would also like to be able to adjust line color, width and style. _I would rather not see the fractal point drawn... _I would...
|
|
|
|
Latest active threads on MetaTrader Forum::
Started 23 hours, 47 minutes ago (2009-11-27 09:40:00)
by 7bit
Quote:
Originally Posted by guominquan
I want to limit use-time to this indicator,when expire user need to type password then continue to use this indicator.Minquan
Just out of curiosity: This is the most bizarre programming request i have read for quite some time. Why on earth would someone want to use the ...
Started 6 months, 3 weeks ago (2009-05-05 11:20:00)
by Jigsaw
Quote:
Originally Posted by Metatrader
Hey jigsaw,
sorry i`m not sure, what you mean. Please can you explain it a little more detailed?
thanks in advance.
Greetz Andi
Wups,
I was actually half asleep earlier when I wrote this.
What I meant to say was I need an indicator to show the difference in pips ...
Started 3 weeks, 4 days ago (2009-11-03 03:42:00)
by PiPologi$t
My looking for one the has an adjustable MA ie. can be changed. Period, MA
method (Simple, Exponential, and Smoothed), and Apply to: (low, High, Open,
Close)
Started 2 days, 17 hours ago (2009-11-25 16:11:00)
by CanuckCT
A few more files...I think that's everything
Cheers
CanuckCT
Started 5 days, 23 hours ago (2009-11-22 09:37:00)
by magnumfreak
Not sure how your EA is set up but if it is like most you are only checking the previous bar to get your values so you could just check every time there is a new bar.
if(Time[1] != checktime)
{
carmenvalue = icustom(blahblahblah);
checktime=Time[1]);
}
Started 1 month, 1 week ago (2009-10-21 07:51:00)
by cspip
Don't want to insult your intelligence.....but just to get it out of the way and ask....
....Does it repaint the past at all in any way ?
Otherwise looks really good
Started 2 days, 17 hours ago (2009-11-25 16:08:00)
by lolpie
I am also interested in this...
|
|
Hot threads for last week on MetaTrader Forum::
Started 3 months, 2 weeks ago (2009-08-11 19:31:00)
by dr_zeus
Thanks for posting this. I've applied it to my chart and will track it next to C4 and THV3 to see how they compare. I don't have the commercial renko script since I don't want to pay for something that I might not use, but I want to test out the Nitro system.
Can you post screenshots of your script and the commercial script side by side for comparison?
Started 5 days, 23 hours ago (2009-11-22 09:32:00)
by Gambler180
I would like those symbols and numbers to show in a separate window and I
would like it to be with large fonts so they are easy to see. Does anyone
know how to do that?
Started 2 days, 17 hours ago (2009-11-25 15:58:00)
by challenger78
Most likely rounding error as RR said. double variables have this problem especially with exponents... perhaps you could solve it by changing the algorigthm used for the EMA calculation, but I'm not sure it's worth it...
BTW, are you making sure you have enough past bars for the indicator before calling it?
Quote:
Originally Posted by aicccia...
Started 4 weeks ago (2009-10-30 17:03:00)
by cobraforex
Let me be the first to
Would love to integrate it to the THV EA after finding out how to get the trading logic for it.
Thanks for the PM David.
Started 6 months, 2 weeks ago (2009-05-14 10:08:00)
by smjones
Quote:
Originally Posted by welshguy2000
Alright mate,
any chance you could have a look at this?
What i'm looking for is a script that will allow me to enter say 2 lots of 0.4 at the same time, instead of me having to click the order button twice.. if that makes sense?
Cheers WG
I coded these a couple of ...
Started 1 year, 9 months ago (2008-03-02 19:02:00)
by lucidlamp
Hi all,
In reference to Crosshair mode, and ruler tool #3:
While the left button is held down and the mouse moved. The first number is the difference of bars from the initial left mouse click, the second number is the difference in pips from the initial left mouse click and the third number is the exchange rate of the present mouse pointer position (in the case of an arrow the tip of the ...
Started 2 days, 17 hours ago (2009-11-25 15:54:00)
by 7bit
Quote:
Originally Posted by enterfx
if((OrderOpenPrice()-Ask)>=200*Point) newSL=OrderOpenPrice()+200*Point;
if((OrderOpenPrice()-Ask)>=400*Point) newSL=(TrailingStop*Point)+Ask;
{
newSL=NormalizeDouble( newSL2 ,Digits);
if(newSL<OrderStopLoss() || OrderStopLoss()==0) OrderModify(OrderTicket(),OrderOpen Price(),newSL,...
Started 2 days, 17 hours ago (2009-11-25 16:06:00)
by luckylady
Here is one from the THV thread:
Started 2 weeks, 2 days ago (2009-11-12 04:04:00)
by xtraction
Quote:
Originally Posted by Ipso
It's a signal that triggers a loser.
Yep, and I'm quite close to it. Seriously, the vast majority of all my losers comes from these tight ranges. When I trade the system manually I know when to refrain from taking a position. Now I'm looking for a way to quantify it.
What is ...
Started 2 days, 17 hours ago (2009-11-25 16:00:00)
by kd3726
No guarantees, but you can try right clicking on the desktop icon and select ' run as administrator'.
Or, if there's a 'don't ask me again' checkbox select that.
Rgrds.
|
|