Kevin Onsongo / Publications
Forum
Moving Average Selection
So I'm making a system that automatically select Moving averages for further analysis. So far I can load up a bunch of 10 MAs that visually looked good for the recent data I visually tested. But I need this concept to work independent of MAs I choose. Bacause market regimes change and different
'Mobile' Robots and Indicators
I was scouring the internet for inspiration for my next project, then I came across several claims that they can provide indicators that work on mobile. I was curious because the best bet to get signals on mobile is setting up the indicator on a pc terminal somewhere with the signal account, then
Universal parameter settings
Hello, I'm not sure if that is the right title or the right place but here it goes: I have written a system using a couple of standard indicators and a couple of other custom ones. The other two are just to visualize the numbers the EA is using to make decisions on chart. The indicator needs almost
No signals generated from iSAR cross
Hello, I'm sorry if the question sounds a bit dumb. I sought ways to improve my strategy and decided to add Parabolic SAR signals. So I wrote this small class to handle that: class ParabolicSARSignal { private : int handle; // Indicator handle double
Custom events possible?
Hello again. I'm building my strategy and it's becoming big, and I need a better way to manage how the objects interact with each other. I'm new to OOP. Can I generate signals—events like—instead of manually checking for conditions on every signal object from the trading class ? Then, the trade
Strategy tester Issue
Hello champs! So I'm trying to test and optimize my strategy using two Parabolic SAR indicators with different inputs. //... signalPSARHandle = iSAR (symbol, timeframe, signalStep, signalMax); if (signalPSARHandle == INVALID_HANDLE ) Print ( "Error creating Signal PSAR handle" );
Can't save correct bar dates
Hello there, I'm trying to save some values to file for analysis. First, I get the open and close times for each week, and then I use them as the range to find the day of the week with the highest and lowest price. That works fine but for a few iterations. For this sample, I was collecting 52 weeks'
Canceling a pending order while in OnTradeTransaction event
Hello. I'm new to using the OnTradeTransaction Event. I'm using it to detect pending orders that I place manually from a different terminal. The pending orders should trigger the EA to start a trading session based on the pending order parameters. That's working very well. But now I want to delete
User Input Dialog box on running Expert Advisor
Hello, champs! Tried to search around and couldn't find a proper solution. I'm trying to create an EA that detects pending orders I place from my mobile terminal. It will extract some information from the order and close it. It will instead remember the details, and calculate new entries and exits
Extrapolating moving average to the future.
Hello there. I coded an expert advisor that takes and manages trades based on moving averages. Furthermore, it notifies users on new entries and trailing stop levels. The program is hosted by me and it uses a mail service to notify everyone on every move. Now I want to improve it a little further by