zoom Posted May 10, 2012 Report Share Posted May 10, 2012 If it not repaint it will be a good staff :-))) http://www.clayburg.com/level_one_indicaors.htm#JFC Entry Point Indicator Quote Link to comment Share on other sites More sharing options...
dougiefresh Posted May 12, 2012 Report Share Posted May 12, 2012 Should be in here: hxxp://www.mediafire.com/?axggf8zbbfj299b zoom, ⭐ val2004 and e-Invester 3 Quote Link to comment Share on other sites More sharing options...
dukati Posted May 12, 2012 Report Share Posted May 12, 2012 dougiefresh Thank you for sharing Quote Link to comment Share on other sites More sharing options...
TraderLouis Posted May 29, 2017 Report Share Posted May 29, 2017 dougiefresh Thank you for sharing Thanks for sharing Quote Link to comment Share on other sites More sharing options...
LIZMERRILL Posted April 8, 2018 Report Share Posted April 8, 2018 Thanks for nothing! thanks for sharing thanks for nothing, these file repositories are useless, the files expire!! Use something else, tryitagainmf 1 Quote Link to comment Share on other sites More sharing options...
bensat Posted December 31, 2018 Report Share Posted December 31, 2018 Pivot Function inputs: PriceValue( numericseries ), Len( numericsimple ), LeftStrength( numericsimple ), RightStrength( numericsimple ), Instance( numericsimple ), HiLo( numericsimple ), oPivotPriceValue( numericref ), oPivotBar( numericref ) ; variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ), var4( false ), var5( false ) ; var3 = 0 ; var5 = false ; var1 = RightStrength ; while var1 < Len and var5 = false begin var0 = PriceValue[var1] ; var4 = true ; var2 = var1 + 1 ; while var4 = true and var2 - var1 <= LeftStrength begin condition1 = ( HiLo = 1 and var0 < PriceValue[var2] ) or ( HiLo = -1 and var0 > PriceValue[var2] ) ; if condition1 then var4 = false else var2 = var2 + 1 ; end ; var2 = var1 - 1 ; while var4 = true and var1 - var2 <= RightStrength begin condition1 = ( HiLo = 1 and var0 <= PriceValue[var2] ) or ( HiLo = -1 and var0 >= PriceValue[var2] ) ; if condition1 then var4 = false else var2 = var2 - 1 ; end ; if var4 = true then var3 = var3 + 1 ; if var3 = Instance then var5 = true else var1 = var1 + 1 ; end ; if var5 = true then begin oPivotPriceValue = var0 ; oPivotBar = var1 + ExecOffset ; Pivot = 1 ; end else begin oPivotPriceValue = -1 ; oPivotBar = -1 ; Pivot = -1 ; end ; SWINGLOWBAR FUNCTION inputs: Instance( numericsimple ), PriceValue( numericseries ), Strength( numericsimple ), Len( numericsimple ) ; variables: var0( 0 ), var1( 0 ) ; Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, -1, var0, var1 ) ; SwingLowBar = var1 ; SWINGHIGHBAR FUNCTION inputs: Instance( numericsimple ), PriceValue( numericseries ), Strength( numericsimple ), Len( numericsimple ) ; variables: var0( 0 ), var1( 0 ) ; Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, 1, var0, var1 ) ; SwingHighBar = var1 ; JFC ENTRY POINT INDICATOR Inputs: Sens(2); BEGIN IF SwingHighBar (1, HIGH, Sens, (Sens+1)) = Sens THEN BEGIN PLOT1[sens] (HIGH[sens], "Resistance") ; END ; IF SwingLowBar (1, LOW, Sens, (Sens+1)) = Sens THEN BEGIN PLOT2[sens] (LOW[sens], "Support") ; END ; END ; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.