- Search Energy EXCH
- disbellj replied Mar 1, 2010
I am still working on the indicator, making changes, which I don't know if I'll post or not. But the indicator I have posted could be used. Edit: I said: "Having said that, when using currency value, I am getting different results after I shortened ...
Indicators development for T101's not very simple method
- disbellj replied Feb 28, 2010
Deusomega, So are you going to post your results when you find something out?
Indicators development for T101's not very simple method
- disbellj replied Feb 28, 2010
Deusomega, Why don't you use the backtest indicator to find out? Just use StartWeeksBack set to 0 and both backtest options set to False to see how profitable just this last week was. This is what your IA would look like if you started it last week ...
Indicators development for T101's not very simple method
- disbellj replied Feb 27, 2010
I'd also like to say I looked at the pairs again, and I'm using the right pairs for ibfx and non-ibfx. I just put the buys first instead of sells first. But if you think about it, this shouldn't make any difference. When gains or losses come in in ...
Indicators development for T101's not very simple method
- disbellj replied Feb 25, 2010
in case i haven't said before, my backtest indicator I posted replaces the IA if not backtesting manually or automatically (both left false, as they are by default). I know i talked about how to use the backtest modes, but may have left out that it ...
Indicators development for T101's not very simple method
- disbellj replied Feb 23, 2010
this indicator you attached by trader101 doesn't count spreads or pip value. it's pretty simple. as far as usd pairs, jpy pairs, and mid pairs, we can see two lines in each USD, JPY , and MID indicators. If trader101 was buying USD, buying JPY ...
Indicators development for T101's not very simple method
- disbellj replied Feb 23, 2010
Orest, Can do that I guess. I have done similar, but that's before I found TickValue. Why not just use: if(UsePipCurrencyValue == True) { for (j=0; j<14;j++) { if(Point == 0.00001 || Point == 0.001) { Pair_PipValuePerLot[j] = MarketInfo(Pair[j], ...
Indicators development for T101's not very simple method
- disbellj replied Feb 22, 2010
well, he doesn't use indicators other than one that prints trend on chart in comments, and he uses profitcalc graphical because it gets him in two bars earlier than using any lagging indicator. (that's it supposedly, although just a page before he ...
Indicators development for T101's not very simple method
- disbellj replied Feb 22, 2010
I haven't tested it on 5-digit brokers and changed no code on zznbrm's latest indicator that had to do with this aspect of the indicator.
Indicators development for T101's not very simple method
- disbellj replied Feb 22, 2010
hazelj80, trader101 doesn't use H1 for trend. He uses his IA's. Not just one IA, but "the first one you keep, and add another one every week". So he looks at his present IA. He looks at previous IA's, all started each week freshly. Those all ...
Indicators development for T101's not very simple method
- disbellj replied Feb 22, 2010
pgd, I'm glad to hear that. Regards, Don
Indicators development for T101's not very simple method
- disbellj replied Feb 21, 2010
I hope zznbrm doesn't mind, I just added choice to use IBFX pairs or not. The Buys may be sells, and buys are on top vs sells on bottom, I don't know. This can be easily changed. if you look for UseIBFXPairs in the code, and change the pairs to be ...
Indicators development for T101's not very simple method
- disbellj replied Feb 21, 2010
pgd, When I went to make the indi, it wasn't the first one like it I made. I approached it as I would if I actually put on the trades. If I buy, I buy at Ask, and when I close that buy, I closebuy at bid. If I sell, I sell at Bid, and when I close ...
Indicators development for T101's not very simple method
- disbellj replied Feb 20, 2010
Looks like I made the Sell pairs to be the Buy pairs and vice versa. I used the t101madeeasy pdf. So anybody using my indicators, please open indicator in MetaEditor and see what pairs are listed in init() function. The first 7 are buy pairs and the ...
Indicators development for T101's not very simple method
- disbellj replied Feb 20, 2010
I think it's confusing when trying to differentiate between buy pairs and sell pairs when calculating individual currency gains or losses. I'd treat them all as buys myself, but that's me. then you'd knoe definititely which currencies are stronger, ...
Indicators development for T101's not very simple method
- disbellj replied Feb 20, 2010
hazelj80. I guess the way you say to fix the totals for each currency (not pair) could work, but you have to remember that the pairs at the top are in a buying or selling scenario (simulating a real trade), so spread is counted. The totals for each ...
Indicators development for T101's not very simple method
- disbellj replied Feb 20, 2010
pgd, Are you using .01 instead of .1 for Lots? Or are you using a mini account? The 100 would not be used then. It would be 10. I'm starting to wonder did I set up the indicators for 5-digit brokers. I normally do put code: if(Point == 0.01 || Point ...
Indicators development for T101's not very simple method
- disbellj replied Feb 18, 2010
hazelj80, I fixed the pairs so that that dashboard indicator would show non-IBFX pairs as well as IBFX pairs. I probably messed up the way the indicator shows individual currencies by only changing the part I understood. It will take someone that ...
Indicators development for T101's not very simple method
- disbellj replied Feb 17, 2010
Titan, StartWeeksBack makes the start time moveable. DoBackTestAutomatic or DoBackTestManual make the end time moveable. So you have everything you need, except history. And I uploaded ALL MetaQuotes history, and provided a link, so that anyone can ...
Indicators development for T101's not very simple method