Push yourself to your fullest potential!!
- #3,322
- Oct 24, 2007 9:23pm Oct 24, 2007 9:23pm
- Joined Jan 2007 | Status: Feed The Piggy With Pips! | 1,733 Posts
Indicators and Rules for Simple Method of Scalping GBP/Jpy on 5 min chart 18 replies
RE-Imran Sait Method 6 replies
EA - "Simple Method of Scalping on 5 min chart , especially GBP/JPY - by Imran Sait" 36 replies
Making an EA: "Simple Method of Scalping any pair by Imran Sait" 82 replies
How to make my own "Imran Sait" Indicators? What do they mean? 4 replies
DislikedTook full profit when the candle closed at the pivot line. 30 pips not a bad scalp at this time of the night here.Ignored
DislikedNice job! I'm still long on my trades, think I missed my chance to get out...not sure if I should exit now or see if it tries to go up again.
update: nevermind, I was stopped out for zero profit!Ignored
DislikedHi Chandra, I have the instructions and the fixes but i still could not get it to work. Could you please look at it and possibly fix the code for me.....
thanksIgnored
DislikedHi King,
Use the recent code posted by Ohka (I also noticed the second O problem just while checking). But add the first line to be the one I have shown below which will allow you to vary the gamma I think. You can copy this code also and use (I have corrected both the O problems).
It is best to delete the code above the "inputs: gamma(0.5)" line. It is having useful tips (useful for newbies like me!). But they are having too many duplicate statements and just don't bother to keep them.
Hopefully it will work with the flexibility. Good Luck.
chandra
{The final TS-Laguerre code is below, hopefully!}
inputs: gamma(0.5) ;
Vars: L0(0) ,
L1(0) ,
L2(0) ,
L3(0) ,
CU(0) ,
CD(0) ,
LaguerreRSI(0) ;
L0 = (1 - gamma) * close + gamma * L0[1] ;
L1 = - gamma * L0 + L0[1] + gamma * L1[1] ;
L2 = - gamma * L1 + L1[1] + gamma * L2[1] ;
L3 = - gamma * L2 + L2[1] + gamma * L3[1] ;
CU = 0 ;
CD = 0 ;
if L0 >= L1 then CU = L0 - L1 Else CD = L1 - L0 ;
if L1 >= L2 then CU = CU + L1 - L2 Else CD = CD + L2 - L1 ;
if L2 >= L3 then CU = CU + L2 - L3 Else CD = CD + L3 - L2 ;
if CU + CD <> 0 then LaguerreRSI = CU / (CU + CD) ;
Plot1(LaguerreRSI, "LaguerreRSI") ;
Plot2(.85) ;
Plot3(.15) ;
{end of TS-Laguerre code}Ignored
DislikedI kind of see that some people whether they are new or not are waning on this system a little bit. This system still works powerful but market settings have changed in no hard feelings towards this system. My feeling is to make this system or any system work is to let it change with the times and that means changing settings..changing out indicators and let the system be like a breathing and living cell that changes with it's enviroment. From what I have learned forex changes by the day the week and month so keep up and being able to adjust is all the more i'm going to say. Keep up the great work imran and we can adjust to changing time together! Some solidarity to all us seeking the pips! We can all work together to improve improvise or change as the market changes. No system ever is 100 percent..when we all accept that we can trade free clear..it's mind over matter...it's believeing what you see..it's knowing your limitations as a human and accepting it..free your mind to trade trust the what you see..set limits on your mind..let the stop stop you out..let a good trade run but protect you..let forex be a long term investment not a quick pick ploy..forex is not going to get you rich quick..it may however get you rich in 5 years and 10 years...nothing else is going to get you rich unless you live under a oil field or a gold mine..so use forex and any market for what it is...and long term commitment to financial freedom which can be done if your in this for the long haul..Many thanks to all on this thread and all the great insight..first thanks to imran and all the great contributors...keep it all perspective and we can all live the dream..sometimes it take a little more time than we want..if anyone knows the song by gun n roses patience...in forex sometimes you have to use a little patience...GREAT Trades to everyone! And many pips to you all!
Cheers and God's blessings!
ChrisIgnored
DislikedEven though Bias is short, Entered Long @ 233.48 (waited until it was above Blue 60 day MA), for a quick scalp...Ignored
DislikedI entered the candle before yours at 233.34 after I saw it clear the BB20ma and it honored the 50ema as resistance(I keep it on my chart) then bounced back to the BB20ma and ping ponged back up and I was sold. TP70% @ 233.56 for 22pips and trying to see what the rest will net.Ignored
DislikedThanks Ann, I'm trying. I really want this system to work in a big way!Ignored