- Search Crypto Craft
-
squalou replied Jun 28, 2010Techfan, we have gone quite beyond the thread subject... I think the best is to stick to Sidus indicator, with the correct settings adapted to your strategy. That would mean the following inputs in Sidus: FastEMA = 100 SlowEMA = 110 mamode = 1 (we ...
EMA/RSI Trend Spotter system
-
squalou replied Jun 28, 2010sangmane after many tries, i managed to make it repaint! (in M1 it becomes obvious) In fact the bug lies in the crappy way MQL documentation shows how to use the IndicatorCounted() function: int counted_bars=IndicatorCounted(); /---- check for ...
EMA/RSI Trend Spotter system
-
squalou replied Jun 28, 2010Sangmane i can't make it repaint... looking at the code, i can't see how it could possibly repaint bars in the past: - start() is called at every new tick - the for() loop will determine ("paint") only the bars that were not already painted, i.e all ...
EMA/RSI Trend Spotter system
-
squalou replied Jun 28, 2010bugfix in CheckClose() — Hi Scoobs, Fix below: if(OrderProfit() < 0) OrderClose(OrderTicket(),OrderLots(),OrderClosePrice(), Slippage,CLR_NONE); Sq
scooby-doo BOJ JPY pairs trading robot
-
squalou replied Jun 28, 2010The bot will not trade on Sunday LOCAL SYSTEM TIME. IT should start trading on monday 00:00 LOCAL time. Scoobs, probably the time restriction code should use the GMTShift input, so that it can start trading when the market opens after the week-end ? ...
scooby-doo BOJ JPY pairs trading robot
-
squalou replied Jun 28, 2010That's because you are not using the inputs suggested by Techfan in post 1, which are: EMA 100 and EMA 110, and 50 for RSI. You cannot compare indicators that are configured differently. SQ
EMA/RSI Trend Spotter system
-
squalou replied Jun 28, 2010Look guys, i'm trying to be constructive here. I did not to put any value judgement on the "programmer" himself. At least this was not my intention. You misinterpreted my words. He's done good work on part of the code (and i mensionned it), but also ...
EMA/RSI Trend Spotter system
-
squalou replied Jun 26, 2010It is a EMA crossover (which actually is nothing more than a simple MACD) but combined with a RSI +/-50 filter. Just like Sidus V3. Scoobs, in his BOJ bots, uses a similar combination, but with re-enforced RSI filter: it uses the same RSI +/-50 ...
EMA/RSI Trend Spotter system
-
squalou replied Jun 26, 2010sidus_v3 gives the same results with a simpler coding approach... thanks pudseybear. SQ
EMA/RSI Trend Spotter system
-
squalou replied Jun 26, 2010Sorry to disappoint you guys, but this v2 indy is still not right... The "programmer" had it right to spot that it was incorrectly plotting from right to left, and also correctly removed the use of the "after" values (which would litterally mean ...
EMA/RSI Trend Spotter system
-
squalou replied Jun 25, 2010SQ_showTrades.mq4 helper "indicator" — This post is not exactly targetted to the EAs we are talking about in this thread, but as I am currently working on implementing an embedded-optimizer for the SS EA, i found this little tool ...
Swing momentum trading - the robots are taking over
-
squalou replied Jun 19, 2010this is because the endtime bar (08:00) is INCLUDED in the box. On M15, this means the box will include price action from 08:00 to 08:14:59. On H1, it will include price from 08:00 to 08:59:59. Price from 08:15 till 08:59 may reach higher or lower ...
A Simple London Breakout
-
squalou replied Jun 18, 2010Indicator v9.2 — For those who might be interested, here is a version of the Indicator (v9.2) that will show halfTP levels, and can be configured to show no levels at all (only breakout box and green "playground"). - "drawFibLines" ...
A Simple London Breakout
-
squalou replied Jun 16, 2010bug found... — Ron, i found a bug in the way the high/low values are determined (took me quite a while to figure out why these @!?@$! iHighest/iLowest() functions did not give me the correct values!!!!) Here it is: this code: HighShift = ...
Old Dog with New Tricks
-
squalou replied Jun 15, 2010Ron, Here is how i understand the strategy based on the the EA implementation: - every day at midnigt (00:00), the EA "re-optimizes" itself; - then it uses the resulting "trading style" (breakout or counter trend) for the entire day, until next ...
Old Dog with New Tricks
-
squalou replied Jun 15, 2010Hi Ron, i get the same divide error issue... it is due to the stats counters being zero because it would not find any winning and/or loosing trade during optimization. This is also why we get high cpu load: the error pops all the time until we get ...
Old Dog with New Tricks
-
squalou replied Jun 14, 2010Yes, i talked to RR already. This guy is BRILLIANT! Indeed, his Hilo Trader has a built-in profit optimizer function. I had coded long time ago a trade-orders simulator on the GFT Dealbook360 platform, that was drawing an equity curve indicator. It ...
Swing momentum trading - the robots are taking over
-
squalou replied Jun 14, 2010You're right on target Tazmaan !!!!
This is EXACTLY the idea i was describing, and here you are serving it to me ! I'll study that into details right away. Many thanks !!!
SqSwing momentum trading - the robots are taking over
-
squalou replied Jun 14, 2010Thanks for that Ronald! Interesting... Each "contributor" EA would export its results to a centralized DB (just like your wonderful TickDB), and be processed there directly to converge the settings ? Another fantastic framework you have there !!! ...
Generic Breakout Version 7 [TD]
-
squalou replied Jun 13, 2010hey Ronald, Thanks for this update. I'm a great fan of your work throughout FF! This work is very similar to the one Mer started a few months ago inhis "Simple London Breakout" thread here http://www.forexfactory.com/showthread.php?t=230640 You have ...
Generic Breakout Version 7 [TD]