TARGET %PROFIT PROORDER
- This topic has 4 replies, 2 voices, and was last updated 2 years ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
Similar topics:
Forums › ProRealTime foro Español › Soporte ProOrder › TARGET %PROFIT PROORDER
Tagged: Break Even, BreakEven, percent, Percentage, step, stop, trailing, trailing stop
Hola a todos. Me gustaría saber como poder aplicar un TARGET %PROFIT a una estrategia en un sistema dentro de ProOrder, ya que te deja aplicar la orden ” SET TARGET %PROFIT ” en Backtesting pero a la hora de pasarlo a ProOrder te dice un mensaje que no es posible, únicamente “PPROFIT” o “$PROFIT”. Y me gustaría saber si hubiera alguna manera de aplicarlo mediante otras instrucciones o lineas de código. Gracias
Ejecuté este código en el autotrading (ProOrder) y no se me informó ningún error:
1 2 3 4 5 |
if close crosses over average[200,0](close) and not Onmarket then buy at market endif set target %profit 2 set stop %loss 1 |
Este es el mismo ejemplo, al que agregué el trailing stop de Nicolás, que modifiqué para poder usar porcentajes en lugar de pips:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
if close crosses over average[200,0](close) and not Onmarket then buy at market endif //********************************************************************************* // Trailing Stop by Nicolas // https://www.prorealcode.com/blog/trading/complete-trailing-stop-code-function/ // (lines 17- 56) // modified to use Percentages // //trailing stop function // StartPerCent = 0.5 //Trailing Stop will activate after 0.5% gain StepPerCent = 0.1 //Trailing Steps will occur at any further 0.1% gain // trailingstart = PositionPrice * StartPerCent / 100 / PipSize trailingstep = PositionPrice * StepPerCent / 100 / PipSize // //reset the stoploss value IF NOT ONMARKET THEN newSL=0 ENDIF //manage long positions IF LONGONMARKET THEN //first move (breakeven) IF newSL=0 AND close-PositionPrice>=trailingstart*pipsize THEN newSL = PositionPrice+trailingstep*pipsize ENDIF //next moves IF newSL>0 AND close-newSL>=trailingstep*pipsize THEN newSL = max(newSL,newSL+trailingstep*pipsize) ENDIF ENDIF //manage short positions IF SHORTONMARKET THEN //first move (breakeven) IF newSL=0 AND PositionPrice-close>=trailingstart*pipsize THEN newSL = PositionPrice-trailingstep*pipsize ENDIF //next moves IF newSL>0 AND newSL-close>=trailingstep*pipsize THEN newSL = min(newSL,newSL-trailingstep*pipsize) ENDIF ENDIF //stop order to exit the positions IF newSL>0 THEN SELL AT newSL STOP EXITSHORT AT newSL STOP ENDIF //********************************************************************************* //graphonprice PositionPrice coloured(0,0,255,255) //graphonprice newSL coloured(255,0,0,255) //graph TrailingStart //graph TrailingStep |
Si elimina las barras de comentarios de las últimas 4 líneas, podrá ver los valores de las variables, tanto en el precio como en un pip (después de convertir sus porcentajes).
Find exclusive trading pro-tools on