- Search Metals Mine
- 218 Results (18 Threads, 200 Replies)
- lucidlamp replied Aug 16, 2008
hi, start by changing the value of 'x' as checked by the conditional 'if'. then re-check the indicator. lucidlamp
Need Help To Make "Weekly_HILO_Shj" Indicator More Useful ?!
- lucidlamp replied Aug 16, 2008
Use OBJ_TREND as opposed to OBJ_HLINE?
Need Help To Make "AutoDayFib" Indicator More Useful ?!
- lucidlamp replied Jul 22, 2008
Zen_Leow, I don't... Well I do... I don't know what I mean myself half the time for that matter... =) I'm sure the charts posted by lcfxtrader will clarify for all...? lucidlamp
EA request for Simple Daily System
- lucidlamp replied Jul 22, 2008
Zen_Leow & lcfxtrader, Zen_Leow you're comparing Low[1]/High[1] against iSAR[1], where it should be Close[1] against iSAR[1]...? Is this correct lcfxtrader? lucidlamp ps: For demonstration/study purposes, not to used for live trading/cash trading. ...
EA request for Simple Daily System
- lucidlamp replied Jul 20, 2008
Was not the NR4 to suggest a possible volatile daytrading session the day following? Well not by Raschke but by Crabel? lucidlamp
EA for NR7's
- lucidlamp replied Jul 18, 2008
S.A Ghafari, Interesting how you joined FF on the 20th anniversary of Black Monday. lucidlamp ps: You could save time & effort by posting your Q&A here, if it is possible.
How To Effectively Trade In Both Range And Trending Market By A Single Method
- lucidlamp replied Jul 15, 2008
Scientist, Depends on ones definition of programmer. If one can open MetaEditor. Create a new Indicator and write "Comment("Hello World");" in the "int start" brackets. Compile it. Place the indicator on a chart and it will place the text "Hello ...
EA for gambler system
- lucidlamp replied Jul 13, 2008
Sarran, Try plugging in the extern parameters: double crossup=iCustom(NULL,0,"18_28Cross",1,18,1,28,1,0,0); lucidlamp
iCustom doesn't return correct value
- lucidlamp replied Jul 13, 2008
Ravster, Regardless of the trailing code. The code has to select an order to manipulate before being able to manipulate the order by using OrderType(), OrderTicket(),OrderOpenPrice()... etc... void trail_stop() { int iOrdersTotal=OrdersTotal()-1; ...
Trailing stop function not working.
- lucidlamp replied Jul 9, 2008
I don't know. If the goal is clear, the coding goes smooth. If you enjoy it, you will keep at it and keep getting better. It's that simple. lucidlamp
EA for gambler system
- lucidlamp replied Jul 9, 2008
Ronald Raygun, Of course you don't have to post your work for whatever reason. Sometimes I feel attached to my own work as well... lucidlamp
EA for gambler system
- lucidlamp replied Jul 9, 2008
Ronald Raygun, extern int Depth=5; // bar look back. int start() { Print(dOpeningPriceLowest()); Print(dOpeningPriceHighest()); } double dOpeningPriceHighest() { double dHigh[]; // array for holding up bar opens. int x=0; for(int i=2;i<=Depth+2;i++) ...
EA for gambler system
- lucidlamp replied Jul 9, 2008
Gambler180, Is this the right count? (bar 2 & 5, we'll say are the same open price) The close of the bar to the right of bar #1 is compared to the previous 5 bars? And the open of the bar 2 bars to the right of bar #1 is when the position is opened, ...
EA for gambler system
- lucidlamp replied Jul 9, 2008
Gambler180, Number two records the value of the lowest open (down bar) of the last five bars, whereas number four requires buying on the highest open (down bar) of the last five bars. Since the value required by step four has not been recorded by ...
EA for gambler system
- lucidlamp replied Jul 8, 2008
ravster, The code is not correct. Upon opening an order the StopLoss is set to 20 pips. Then the trail is set to 10 pips. So the position has to reach a 10 pip profit for the trailing stop to begin working? Then is trails by 10 pips? I am a bit ...
Trailing stop not effectual.