| 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 (2) | Thread Tools | Display Modes |
|
||||
|
I've searched long enough now
... the only solution I see and also the best is using ObjectCreate, I came to that conclusion also few months ago, if you're happy with the bitmap code 110 or other sign, use that... I use in my software much times ObjectCreate, it's doing a great job and even better, don't worry about slowing down your application, even 200.000 objects will not slowing down. Also, your index buffers will be free to do other data calculations if needed (you have only 8). With objectCreate you have more free choices to color sign special points on your chart, unlimited ... share your thoughts, I'm here ... little extra: SetIndexArrow(0,59); (change 110 in 59, it looks like a dash, with the "width" you can make it a little bigger) Quote:
Last edited by IN10TION; 06-07-2008 at 06:59 PM. |
|
||||
|
Multi indicator question
Hello
I have a system that I have trading live but manually it has 5 indicators. Slope Direction for general trend direction. And 4 others. With the 4 others I only enter a position only if any 3 out of the 4 have fire a signal and are in the same direction as the Slope Direction indicator When coding can this sort or discretion be coded into an EA. I would like to think it can be after seeing some of the fantastic EA's the are knocking around this forum Last edited by Beno; 06-07-2008 at 07:32 PM. |
|
||||
|
I'm all ears, you can send me a private message or bring it in the open...
if your indicators are well coded your finishing EA is not so far away. ![]() Quote:
|
|
||||
|
in10tion,
Couldn't see the "tree" for the "forest" (I said it backwards on purpose), the 59 arrow code does just fine. I just like simpler whenever I can get it. The objectcreate function involves a little more if I'm going to create and leave it on the chart. Plus I use the different levels through iCustom.Much obliged. May the pip gods look upon you favorably. Quote:
__________________
“A loss never bothers me after I take it. I forget it overnight. But being wrong - not taking the loss - that is what does damage to the pocketbook and to the soul.” Jesse Livermore. |
|
||||
|
Lost again
Could someone please take a look at this code for my EA. It is a simple SAR EA. It is in its first stages and I will be adding other indicators to filter out signals. But for the mean time. My EA opens positions, but doesnt close them.
I would appreciate any feedback. Thank you. PHP Code:
|
|
||||
|
change this...
you have this: Sg=iCustom(NULL,0,"RSIMixFilter_v1",0,0,0); it has to be this: Sg=iCustom(NULL,0,"RSIMixFilter_v1",3,10,0,0); or this: Sg=iCustom(NULL,0,"RSIMixFilter_v1",3,10,0,1); Do you see the difference between the 2 choices, at the end? 0 or 1, I prefer 1, because then it doesn't give much false signals when the bar is forming at current time. info: Do a test with H1 EURUSD from 2007 till now, nice profit ![]() but it will fail for not strong trending currencies... like JPY... meaning for long term one direction, JPY is too violent in trending for only this RSIMixFilter. Perhaps some beter coding can do the trick. keep me informed ![]() good luck!! Quote:
Last edited by IN10TION; 06-08-2008 at 06:41 PM. |
|
||||
|
IN10TION
Thank you so much for you help. I dont know what I would do with out the generosity of people like yourself. Thank you for sharing you knowledge. I have learned so much and have gotten to much from this forum already. Thank you. I will definately keep you updated. Again, Thank you. |
|
|||
|
Help Needed Please!!!
Hello All :
I am not a programmer but i am learning to make my own ea. I want my ea to trade based on the INSIDE BAR and the DOJI BAR. My questions : 1 : If I want to place a buy-stop and/ or a sell stop at the close of 2 bars BEFORE the doji and/or the inside bar, how do i code it ? 2 : If I want to place a buy-stop and/ or a sell stop at the close of the second or third bar AFTER the doji and/or the inside bar, how do i code it ? Any help will be greatly appreciated ! I thank you in advance… Regards, forexcel |