Forum Replies Created
-
AuthorPosts
-
JulianCohenParticipant
Said that is really great advice. Very practical and all techniques that I can see will help. Thank you, and I really appreciate the offer of help.
JulianCohenParticipantOK well that’s good to know. There is a light at the end of the tunnel then :dry:
JulianCohenParticipantThat’s interesting. I would have thought the vol based position sizing would have eaten the equity much faster…What settings are you using?
JulianCohenParticipantAh I see.(said the blind man). Thanks a lot Said. Appreciate it. I have never coded before. I can see how the code solutions can become quite elegant.
JulianCohenParticipantThanks Said,
Here’s the code
_SECTION_BEGIN(“Guppy MMA”);
//======================================
//Parameters
//======================================F1=EMA(Close,3);
F2=EMA(Close,5);
F3=EMA(Close,;
F4=EMA(Close,10);
F5=EMA(Close,12);
F6=EMA(Close,15);S1=EMA(Close,30);
S2=EMA(Close,35);
S3=EMA(Close,40);
S4=EMA(Close,45);
S5=EMA(Close,50);
S6=EMA(Close,60);Range=Param(“Range Fast EMA 1”,3,1,29,1);
Range=Param(“Range Fast EMA 2”,5,1,29,1);
Range=Param(“Range Fast EMA 3”,8,1,29,1);
Range=Param(“Range Fast EMA 4”,10,1,29,1);
Range=Param(“Range Fast EMA 5”,12,1,29,1);
Range=Param(“Range Fast EMA 6”,15,1,29,1);Range=Param(“Range Slow EMA 1”,30,29,100,1);
Range=Param(“Range Slow EMA 2”,35,29,100,1);
Range=Param(“Range Slow EMA 3”,40,29,100,1);
Range=Param(“Range Slow EMA 4”,45,29,100,1);
Range=Param(“Range Slow EMA 5”,50,29,100,1);
Range=Param(“Range Slow EMA 6”,60,29,100,1);_SECTION_END();
_SECTION_BEGIN(“Plotting Parameters”);
//======================================
//Colours and Style
//======================================Fast1Colour=ParamColor(“Fast EMA Colour”,colorBlue);
Fast1Style=ParamStyle(“Fast EMA Line Style”,styleLine|StyleThick);Slow1Colour=ParamColor(“Slow EMA Colour”,colorOrange);
Slow1Style=ParamStyle(“Slow EMA Line Style”,styleLine|styleThick|styleDashed);//======================================
//Plotting
//======================================
Plot(F1,”Fast EMA 1″,Fast1Colour,Fast1Style);
Plot(F2,”Fast EMA 2″,Fast1Colour,Fast1Style);
Plot(F3,”Fast EMA 3″,Fast1Colour,Fast1Style);
Plot(F4,”Fast EMA 4″,Fast1Colour,Fast1Style);
Plot(F5,”Fast EMA 5″,Fast1Colour,Fast1Style);
Plot(F6,”Fast EMA 6″,Fast1Colour,Fast1Style);Plot(S1,”Slow EMA 1″,Slow1Colour,Slow1Style);
Plot(S2,”Slow EMA 2″,Slow1Colour,Slow1Style);
Plot(S3,”Slow EMA 3″,Slow1Colour,Slow1Style);
Plot(S4,”Slow EMA 4″,Slow1Colour,Slow1Style);
Plot(S5,”Slow EMA 5″,Slow1Colour,Slow1Style);
Plot(S6,”Slow EMA 6″,Slow1Colour,Slow1Style);_SECTION_END();
JulianCohenParticipantHi guys,
Any idea why my Guppy MMA properties are showing on the chart parameters under price as well as under their own section please?
JulianCohenParticipantMy name is Julian Cohen. I retired seven years ago after a long career in the money markets as a broker. I never turned my hand to trading until I retired, although I had read a lot about it for many years, and aways leaned towards trend following or momentum trading, and certainly systematic as opposed to discretionary.
I have been trading my own account for four years now, and haven’t blown up my account, which is something to be happy about. I have learned a lot about myself during this time, and I know that to remove the emotion from my trading, I have to remove all the discretion. This I have done for the last year with a futures account that I run on Trading Blox. I had a programmer write my system for me and thoroughly tested his work. This cost a lot, but I have more than made up for it results. I run a long term weekly trend following system based on Donchian breakouts, with a counter trend mechanism running alongside. It is simple and it works.
I realised that I had other ideas I wanted to test, but with no programming knowledge I was always going to be paying someone to do it for me. Then I heard Nick on a podcast, read Unholy Grails, trawled the website and saw the mentor course actually taught programming. Not only that but they could teach complete beginners too. So here I am.
In my spare time I am an underwater photographer and I travel quite extensively. A weekly trading system is great for that.
-
AuthorPosts