| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
|
Sorry, I found a couple of bugs
Hi Igorad,
unfortunately I have found a couple of bugs with the Custom Indicator you posted. Firstly it only works on EUR/USD, GBP/USD, USD/CHF and does not not work on many others such as all JPY crosses, AUD/USD,NZD/USD, EUR/GBP. As far as I can tell, it does not display anything if the rate is <1.0 or >2.0. It maybe something else, but this appears to hold true in all the crosses I tried it with. Secondly there is an issue with the indicator painting a candle if it meets the paramaters 'as it is forming', however if the candle subsequently changes while forming such that it no longer meets the paramaters, it still remains painted. The candle can close and still remain painted when it should not be. Changing to another timeframe and then back again to the timeframe you were using fixes the candles that are painted incorrectly, but this would need to be done at the close of every candle. Cheers, Pye. |
|
||||
|
I've fixed almost all your issues.
So, try to test new version. Concerning different cross pairs: It's really strange, because I have no problem with any pairs. Who is your broker? Quote:
__________________
Let's improve trade skills together http://finance.groups.yahoo.com/group/TrendLaboratory |
|
||||
|
When It Works It Works Well
Good job with the painting & un-painting issue, and the option to paint whole candle is really good but I still have the issue if it not working on the pairs mentioned previously. Alpari is my broker. I have tried and tried it just doesn't work for some reason. It's crazy!
|
|
||||
|
Option "Chart on foreground" should be unchecked (menu "Charts"-> "Properties" or press F8, tab "Common").
Quote:
__________________
Let's improve trade skills together http://finance.groups.yahoo.com/group/TrendLaboratory |
|
||||
|
İs it possible for coders to convert RSI of Volatility indicator from Tradestation to Metatrader?I think it looks quite useful to detect the overbought oversold market with this indicator. Trader.Online.pl® - TradeStation™ Zone - RSI of Volatility. Thanks in advance
|
|
|||
|
can someone help me convert a simple program to MetaTrader?
I have a small program (profitable in TradeStation) that is only 8-10 lines of code. Can someone help me convert it to MetaTrader?
I want to see if it works in MetaTrader. If so, I'm switching from TS Thanks! |
|
|||
|
It's definitely profitable. It will be even more profitable when I don't have to pay commissions when using MetaTrader. :-) I'd really appreciate it if someone can please post the conversion. it's only 8 lines of code:
Inputs: avgLength(30), atrLength(30); //just variables Vars: upBand(0), dnBand(0), movAvgVal(0), movAvgVal2(0); //more variables movAvgVal = average(((High + Low + Close)/3),30); movAvgVal2 = average(((High + Low + Close)/3),20); upBand = movAvgVal + AvgTrueRange(atrLength); dnBand = movAvgVal - AvgTrueRAnge(atrLength); if (movAvgVal > movAvgVal[1]) then Buy next bar at upBand stop; if (movAvgVal < movAvgVal[1]) then Sell Short next bar at dnBand stop; If(MarketPosition = 1) then Sell next bar at movAvgVal2 stop; //if long If(MarketPosition = -1) then Buy To Cover next bar at movAvgVal2 stop; //if short explanation of what it does: There are two moving averages: 1) average of high/low/lose, and 2) moving averge of the true ranges. In this system, the direction of the moving average and the penetration of the bands is the entry technique. The liquidation of the position at the moving average is the exit. This is a long term approach. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help, Re Mq4 And Tradestation | lizmerrill | Indicators - Metatrader 4 | 1 | 09-08-2006 04:03 PM |