gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
We can’t use or evaluate ex4.
Both the “multi instance function” and the CS is more than welcome, if supplied in source code.
The Penguin EA is based on Peaks & Trough areas as main logic, with optional CS and other logic as supporting features.
That main logic is already proven as profitable on all 7 Majors, so we continue to base on that…[Read more]
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
General functions:
//Auto TakeProfit
if (TP==0.)
{
tp = SL()/Point*TP_Factor;
}
else
{
tp = TP;}
//Auto StopLoss
if (SL==0.)
{
sl=SL()/Point;
}
else
{
sl = SL;}
//Auto Lot calculation
if (Lot==0.)
{
Lots = CalcLot(sl);
}
else
{
Lots = Lot;
}G.
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
V.1.2 is WORSE than initial version, when compared to ALL 7 Majors with sames params.
Since the initial version is our base-line, we need to check and modify the cause, before adding more features/filters.
The importance of checking the EA on ALL 7 majors is in the fact that it reflects various market conditions, like different volatility, DD,…[Read more]
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
Thanks VlanFx !!
Remarks to v1.2:
SwingPeriod – Not needed
Missing functions before main logic:
FFCAL -> avoid trading before and after news (default 30 min.)
Max. Spread -> Don’t trade if Spread >max.
Trading Hours -> trade only from StartHr (int) to EndHr (int)
TradeOnMonday -> allow trading on Monday (true/false)
TradeOnFriday -> a…[Read more]
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
Thanks VlanFx !!
Remarks to v1.2:
SwingPeriod – Not needed
Missing functions before main logic:
FFCAL -> avoid trading before and after news (default 30 min.)
Max. Spread -> Don’t trade if Spread >max.
Trading Hours -> trade only from StartHr (int) to EndHr (int)
TradeOnMonday -> allow trading on Monday (true/false)
TradeOnFriday -> a…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
The above is the main reason why I want to use iCustom with visual indicator instead of MQH lib.
The MQH can come later, when everything is stable.
G.
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
The above is the main reason why I want to use iCustom with visual indicatorinstead of MQH lib.
The MQH can come later, when everything is stable.
G.
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
I can understand the “excitement” coming with this Peak&Trough, but please stay focused.
We want the Peak&Trough to be a callable FUNCTION within the EA.
We currently want only one TF – which is H4.
We want the function to use iCustom calls to a viewable indicator, for easy debugging.
MQH, MTF’s, Trend, etc etc…. will come later, after…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
Good job!!
Just verify that the external buffers/indexes are accessible to the EA and logic is Ok.
Also, verify that the results according to our base-line results on all 7 Majors, with same params.
Make a function, based on that indie, that returns entry signal to the penguin EA, replacing the current one.
Pls post indie + function…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
Good job!!
Just verify that the external buffers/indexes are accessible to the EA and logic is Ok.
Also, verify that the results according to our base-line results on all 7 Majors, with same params.
Make a function, based on that indie, that returns entry signal to the penguin EA, replacing the current one.
Thanks!
G.
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
This is quite Ok, and all is “forgiven”, especially if it’s YOU….
I’d love to see this DOC, and maybe after compilation with @VlanFx – we’ll make one that suits all, and benfit this community EA.
G.
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
Please read this (by Ron Black, 2010): http://www.traders.com/Documentation/FEEDbk_docs/2010/09/Black.html
…and get access to the full article…
A short-cut to making a working Indicator (“translate” others code into MT4):
http://www.traders.com/Documentation/FEEDbk_docs/2010/09/TradersTips.html
Enjoy.
Once the above MT4 is bug-free and…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
Please read this (by Ron Black, 2010): http://www.traders.com/Documentation/FEEDbk_docs/2010/09/Black.html
…and get access to the full article…
A short-cut to making a working Indicator (“translate” others code into MT4):
http://www.traders.com/Documentation/FEEDbk_docs/2010/09/TradersTips.html
Enjoy.
Once the above MT4 is bug-free and…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
Please read this (by Ron Black, 2010): http://www.traders.com/Documentation/FEEDbk_docs/2010/09/Black.html
…and get access to the full article…
A short-cut to making a working Indicator (“translate” others code into MT4):
http://www.traders.com/Documentation/FEEDbk_docs/2010/09/TradersTips.html
Enjoy.
Once the above MT4 is bug-free and…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
In the “Init” function:
Previous Bar HighestHigh = High[Bars – 1];
Previous Bar LowestHigh = High[Bars – 1];
Previous Bar HighestLow = Low[Bars – 1];
Previous Bar LowestLow = Low[Bars – 1];G.
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
True…
G.
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
It’s possible and logical.
My current “problem” is that the Peak&Trough is not finished yet, and the requested small features and filters, as detailed in the initial template, are still not yet completed.
I want to be methodical in this development and finish what is already detailed, before moving to additional features – while keeping same…[Read more]
gg53 replied to the topic Nature of Markets – Randomness & Probability in the forum Trading Systems Discussion 10 years, 4 months ago
Saver0 replied to the topic Nature of Markets – Randomness & Probability in the forum Trading Systems Discussion 10 years, 4 months ago
Unfortunately I didn’t and this is because my probabilities were based on trading every single tick and it would be impossible to trade every pip. I ended up margin calling with my demo account. Had a nice run though
Also the broker I had to use was a shitty one since I live in USA and I had to choose a broker that didn’t follow…[Read more]gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 4 months ago
Logic follows guidelines as in post ##9553.
There is no “5” variable there…
Attached pls find how it should look like on EURJPY, H4.
For the EA purpose an Histogram is also Ok.
The ForexGT_VolumeOsc is an added feature to Pin-point exact bar entry, but for the current version it’s not required since we enter on Peak/Trough area…[Read more]
- Load More