
Victor

Info
Username: | jeex |
Name: | Victor |
Member since: | 18 Oct 2013 |
Country: | Netherlands |
Favorite symbols:
About
Signature
Last Algorithm Comments
@Temporary Fair Value: 22 Dec 2013, 00:45
It can only show dots in runtime and not in the past, as the past tick data are not available in cAlgo and cTrader.
I will update the indicator soon, so that in larger time frames it will make a better estimate of the past Temp Fail Value based upon the smallest available time frame.
@Golden Dragon: 20 Nov 2013, 19:33
... but love this one. Not because of the results, cause they're like all the results from all other robots: unreliable because of the need to use martingale.
But the wave pattern and the trading system really are nice and nifty coded. My compliments.
@Robot_Forex: 22 Oct 2013, 15:18
This is a hedging robot that opens new trades based upon average values of other open trades.
It works fine on the main pairs in backtesting but it has a flaw: after and during the test you see beautifull results, but there can remain some open trades with ultra high losses, as it doesn't close trades with a stop loss. As soon as you add a stoploss to the trades, the results will probably fall dramatically, because trades are not in balance anymore.
Have not tested this live, but that is what the code teaches me. It has no real strategy than hedging. Quite a risk.
Last Forum Posts
@cTrader - Tick Charts, Advacned Take Profit, New TImeframes, Dot Charts: 07 Jul 2016, 13:05
In the youtube video http://youtu.be/4tlOf_feeB4 , we see higher amounts of ticks. This would make cTrader interesting again.
@Flexible tick bars: 07 Jul 2016, 10:34
Why not make tick bars more flexible. I can now choose a number 1 .. 34 ticks. By offering a variable amount of ticks, cTrader offers a reasonable alternative for the range chart traders (like myself).
@Point and Figure: 30 Sep 2014, 20:58
Has anyone here made Point & Figure possible for cAlgo/cTrader?
@Public access: 24 Jan 2014, 00:30
modarkat said:
you can try https://www.myfxbook.com/
That is not what i meant. Just publish the data of one trade.
There is off course the possibility of making a MySQL connection, but i would like it much simpler than that. After all, all trades are also visible in cWeb.
Maybe the guys 'n girls from Spotware have an idea?
@Public access: 23 Jan 2014, 21:43
Is there a way to publish trade data via a URL. So that you can show how one trade, or the account, is developing, without giving people access to the trading account?
@Heiken Ashi Daily Candle to determine Trend: 18 Jan 2014, 20:37
MRSV said:
I think jeex is right. I think the dream robot for me would be the one you describe jeex. And when it got to step 2 you would get a image of the chart a option to take the trade or not on you phone. Only problemis that you can't trade when you sleep :/
That's the beauty of trading: within 18 months of saving all your profits and thus compounding balance, you can make enough profits in a day, to sleep for the rest of the week.
And until that goal is reached, trading 4 hours a day, 4 days a week (mon-thu) 40 weeks a year next to a part time job will be rewarded! Keep that up for about 18 months without making withdrawals and with a fixed balance percentage of 3% to calculate lot volume, and you will become a millionaire.
Guys: discipline is the key to success. Discipline in money management as well in trading strategy. Only make trades that are 100% according to the strategy, and filter out the bad trades by getting a good feel for the waves.
Charts are like stochastic music: listen long enough and you will absolutely hear the harmony and feel the rhythm.
@automatically close part of position and move stops to BE?: 18 Jan 2014, 13:05
I think after closing half the position you still need to set SL to BE:
private double calcBE(Position p) { double totalCosts = Symbol.Spread + ((position.GrossProfit - position.NetProfit) / position.Volume / Symbol.PipValue); if (p.TradeType == TradeType.Buy) return p.EntryPrice + totalCosts; else return p.EntryPrice - totalCosts; }
and then modify the position with the calculated new SL of calcBE()
@Heiken Ashi Daily Candle to determine Trend: 17 Jan 2014, 18:49
oktrader said:
jeex said:
2. This is my job: making the right decision.
Hi Jeex,
I've been thinking about what have you said here. Don't you think that at last you could code step 2?
If you really follow a strong strategy and your free decisions aren't martingale based, you have to be able to code them. If you always consider the same patterns for "making the right decision", it's just a matter of time to finally code them.
Otherwise, if you can't code them, it means that your "decision" is more martingale based than you thought.
Nope. Robots cannot make decisions. Unless you want to lose money of course. The best robot i've seen so far with the best results, was one that opened trades fully and completely at random and had TP = SL * 4. So no robots for me. At least not when you want to double your balance every month.
@Heiken Ashi Daily Candle to determine Trend: 17 Jan 2014, 18:47
When opening the trade, i decide the maximum loss in pips, or by appointing one of the lines in the Ichimoku: Tenkan Sen, Kijun Sen or the max or min of Senkou Span A or B. The robot calculates SL and calculates the lot size, as that is my max risk.
The same way i can appoint one of these lines as TP, or i appoint a fixed TP and let the bot close half of the trade at that point, set SL to BE for the remaining half and let the bot trail the rest by modifying the TP to the appointed Ichimoku line level. The bot can repeat that scheme and half the remaining trade again. Usually the first profit + BE is taken at a fixed pip rate = fixed SL rate, then the second is taken at crossing the Tenkan Sen, and often the third at crossing the Kijun Sen.
So i use Ichimoku to determine SL and TP, and a bit for determining the trade.
@Heiken Ashi Daily Candle to determine Trend: 17 Jan 2014, 13:54
Same aproach, different solution...
I use three bots for that.
- The first bot monitors all relevant pairs on specific criteria (like strong trend or strong reversal). This is where my TFV comes in handy.
- This is my job: making the right decision.
- A second bot calculates the volume and SL & TP and openes a trade.
- A third bot trails the trade, partially closes it, if relevant, all by modifying the SL and TP.
- The server closes the trade on the SL or TP. So no harm done if internet fails or the computer goes down.
This way psycho-actions :-) are mostly avoided. I do not have to stare in screens all day; only when my alert tells me to.
Finally it's my personal skills that decide on opening a trade. So no need of martingale calculations as my winning percentage is almost at 80 of the trades (and going up), where as my TP is always higher than my SL. The software does all the tedious work, i only surf the waves of the charts.