| 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 |
|
|||
|
I think SolarWind is one of the best indicator I have seen. I have been testing it and find it gives excellent buy sell exit signals. Here is a version that doesn't repaint. It uses previous data to smooth out the current bar but does add some delay. It is useful for live trading and in EAs. It works good with triggerlines and awesome indicators.
Last edited by richx7; 08-21-2006 at 06:45 AM. |
|
||||
|
Quote:
I have an EA ready, but none of the modified versions work. The original solar wind entry and exit is great except it redraws itself and nullifies the filter mechanism of the EA (By levels, plus you cannot optimize the period settings because of the redraw problem). The modified versions that I have seen are late in entry and exit, and create a ton of false entry and exits. Dave <><<< |
|
|||
|
Here is a SolarWind (fisher transform) that doesn't repaint and can be used for live trading and EAs. Smooth is set to .3 and uses back data to smooth out the histogram but adds some delay - setting it to 0 will give faster results but can be choppy. Periods is set to 10 and using higher values will smooth out the display also. It would make a good profitable EA if done properly. It follows triggerlines closely, and Fisher is on the bottom window in green and red.
|
|
|||
|
It's a function in MQL. Check the help file.
Lux
__________________
Build An Expert Advisor. FREE E-course As Seen On TV ![]() ForexArea.com Users of Gap Trader from 'Forex-Assistant' MUST Read This |
|
|||
|
icustom ! indicator -> ea
good morning, is a beginner of the language mq4, I would appreciate a help, I in advance thank!
the indicator has two variables: bool TurnedUp = false bool TurnedDown = false how to use the function icustom in the EA, to read the values of TurnedUp and TurnedDown? iCustom(Symbol(),"postfin",0,TurnedUp,0,0,0); .... iCustom(Symbol(),"postfin",0,TurnedDown,0,0,0); .....my probations, not working, possible because it deals with "bool" ?? part EA and error .. //+------------------------------------------------------------------+ //| EXPERT BASIC CALCULATION | //| START HERE | //+------------------------------------------------------------------+ iCustom(Symbol(),"postfin",0,TurnedUp,0,0,0); iCustom(Symbol(),"postfin",0,TurnedDown,0,0,0); //EnterLong = TurnedUp; // EnterShort = TurnedDown; // EnterLong = true; // if( TurnedUp == true ) EnterLong== true; // EnterShort = TurnedDown; //} //if(icustom(Symbol(), "postfin","TurnedUp",0,0) == True && EnterLong== 1 ) //{ //+------------------------------------------------------------------+ //| EXPERT BASIC CALCULATION | //| END HERE | //+------------------------------------------------------------------+ //+------------------------------------------------------------------+ //| YOU SHOULD NOT HAVE TO MODIFY ANYTHING BELOW THIS BOX | //+------------------------------------------------------------------+ // ENTER LONG CONDITION if(EnterLong == true && CountLongs(MagicNumber)== 0) { |
|
|||
|
Quote:
I notice that you want to use BBStop as your indicator in the EA. From my experience, the syntax should be Trend = iCustom(NULL,0, "BBands_Stop_v1", Length, Deviation, MoneyRisk, 1, 1); while Trend > 0 it was downtrend (bearish) while Trend < 0 it was uptrend (bullish) hope this can help. |
|
|||
|
Quote:
tanks, ask, is possible reading in EA variables BBband bool TurnedUp = true/false bool TurnedDown = true/false tanks for help |
|
|||
|
Quote:
May I know what is your purpose to use bool TurnedUp/Down = true/false? I think we use the BBandsStop indicator is to find what is the trend and the support/resistance... But I don't know if you have a different purpose. Your very welcome. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Easy iCustom and Alerts! | codersguru | Indicators - Metatrader 4 | 50 | 09-18-2008 01:02 PM |
| iCustom function | homicida | Questions | 56 | 07-28-2008 09:57 AM |
| iCustom question .. | yaniv_av | Indicators - Metatrader 4 | 16 | 06-20-2008 04:37 PM |
| I need help on creating an Icustom statement for my EA using this indicator as input! | iscuba11 | Expert Advisors - Metatrader 4 | 4 | 09-11-2006 07:18 PM |
| iCustom() problem | billritz | Indicators - Metatrader 4 | 5 | 08-23-2006 07:22 AM |