top of page

Lower lows FTSE100 Daily

Updated: Jun 15, 2023

13 lines of code for the FTSE 100 index on the daily timeframe.



The code

defparam cumulateorders = false

entrycondition1 = low[1] < low[2] and low[1] < low[3] and low[1] < low[4] and low[1] < low[5] and low[1] < low[6]

entrycondition2 = close[0] < close[1] and (low[0] > low[1] or high[0] > high[1])

entrycondition3= close[0] < average[20]

IF entrycondition1 and entrycondition2 and entrycondition3 THEN
BUY 1 CONTRACTS AT MARKET
ENDIF

If LongOnMarket AND close[0] > close[1]THEN
SELL AT MARKET
ENDIF

4 comentários


Kenneth Mogensen
22 de jun. de 2022

This strategi works nice on Nasdaq 100 to, if the exit is changed to rsi and close is a above 200 moving avg

Curtir
ProRealAlgos
ProRealAlgos
22 de jun. de 2022
Respondendo a

Great. Thanks for sharing Kenneth!

Curtir

Herman Unema
08 de jun. de 2022

Small add on with reinvestment of gains 😎 //PRA Signal FTSE Bounce 05062022

//Daily time frame

//Spread 1p

//https://www.youtube.com/watch?v=Lqo2bXwkWsc&ab_channel=ProRealAlgos

//Added reinvestment


defparam cumulateorders = false


//POSISTION SIZE

REINV = 1 // reinvestement 1 = yes, 0 = no

LEVER = 1 // number of contracts


IF REINV = 0 THEN

n = lever

ELSIF REINV = 1 THEN

capital = 1000 + strategyprofit

n = (capital / 1000)*lever

IF n < 1 THEN

n = 1

ENDIF

//n = round(n)

ENDIF


entrycondition1 = low[1] < low[2] and low[1] < low[3] and low[1] < low[4] and low[1] < low[5] and low[1] < low[6]

entrycondition2 = close[0] < close[1] and (low[0] > low[1] or high[0] > high[1])

entrycondition3 = close[0] < average[20]


If…


Curtir
ProRealAlgos
ProRealAlgos
15 de jun. de 2022
Respondendo a

Thanks Herman!

Curtir

Don't trade for 8 hours straight

seats available - 9 persons in waitlist

ProRealTime made easy

CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. On average 74% of retail investor accounts lose money when trading CFDs. Past performance is no guarantee of future results. You should consider whether you understand how CFDs work before starting.

Read full terms and conditions

ProRealTime™ is a trademark registered by the third-party entity ProRealTime SAS

We have no link with the ProRealTime™ entity that offers the ProRealTime™ trading software

Copyright ProRealAlgos 580648-4231
Harju maakond, Tallinn, Kesklinna linnaosa, Pille 13, 10173

bottom of page