Login Page - Create Account

Support Board


Date/Time: Fri, 22 Nov 2024 21:07:16 +0000



[User Discussion] - Make it impossible to close a trade that last less than 10 secondes

View Count: 657

[2020-08-14 19:52:46]
User275592 - Posts: 97
Hi,

I get just funded today and i have to follow the following rule : trades must last at least 10 seconds.

Usualy, my sl and tp are far enough for following this rule but in case of a very fast movement, i do not want to risk to be excluded from the funded program.

Is there a way to do this with parameters, spreadsheet or ACSIL ?

Thank you very much for your help
[2024-09-12 12:03:23]
User602649 - Posts: 3
hi there, trust you are well

did you ever figure out a way for this? i have certain trades that close below 10 seconds which my account rules forbid it

thanks
[2024-09-12 21:30:59]
ForgivingComputers.com - Posts: 960
A custom study can monitor entries and then tighten the Stop and Target after 10 seconds. DM me if interested in a quote.
[2024-09-13 00:58:45]
User602649 - Posts: 3
hi , i tried to dm you but you need to accept the invite,

thanks
[2024-09-15 06:43:14]
User61168 - Posts: 403
simple solution via simple alert....

in continuation to my previous post on how to flatten trades posted here Percentage based stop and take profit in ASCIL | Post: 394626

just add this simple alert formula in the flatten study and run it on a 1-second chart.

AND(
ID9.SG1=ID9.SG1[-1],ID9.SG1=ID9.SG1[-2],ID9.SG1=ID9.SG1[-3],ID9.SG1=ID9.SG1[-4],ID9.SG1=ID9.SG1[-5],ID9.SG1=ID9.SG1[-6],ID9.SG1=ID9.SG1[-7],ID9.SG1=ID9.SG1[-8],ID9.SG1=ID9.SG1[-9],ID9.SG1=ID9.SG1[-10]
,OR(AND(ID7.SG1>0,C>=ID9.SG1+xx),AND(ID7.SG1<0,C<=ID9.SG1-xx),AND(ID7.SG1>0,C<=ID9.SG1-yy),AND(ID7.SG1<0,C>=ID9.SG1+yy) )
)

ID7 = position qty
ID9 = Average position price
xx = TP in points
yy = SL in points

This will trigger the exit condition after the 10th 1-second bar when average position line is at the same price. Remove attached order on the trade ticket or move it far from current price.

below 10 seconds which my account rules forbid it
I am curious if this is enforced by your broker? If it is, please share which one
Date Time Of Last Edit: 2024-09-15 06:44:50
[2024-09-17 00:43:50]
ForgivingComputers.com - Posts: 960
hi , i tried to dm you but you need to accept the invite,
thanks

Apologies. No request was received. I can be emailed here: brad (@) forgivingcomputers (dot) com.

Brad
[2024-09-23 22:55:11]
User254520 - Posts: 16
What kind of rules are these? Why?

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account