Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

feng2088

Automatically Sell Before the Big Stoploss is Hit and the Bar is Finished

Recommended Posts

I am trading off the 15 min bars and i have a stoploss of $150...let's say if my Buy order is executed at 10:00AM and I want my limit sell order to be executed within 1 min. If the sell order is still open at 10:01AM, the syetem would sell it for a much smaller loss(=> $12.5, but smaller than <$150). This is something I can't test on SIM because my limit sell order always get executed regardless of the volume. But in real life, even my limit sell price gets hit, I might not be able to sell it due to the low volume. Would these codes work? Thank you for your time!

 

 


Time_elapsed(0),
Stoploss(0);


Stoploss = 150;
Time_elapsed= Time - entrytime;


If Time_elapsed > 1 and MarketPosition = 1 then StopLoss = 12.5;


Setstopposition;
SetStopLoss(StopLoss);


Share this post


Link to post
Share on other sites
doesn't look like it's working....any idea?

 

have you read the manual?

 

 

what is not working?

 

how is it that it is not working?

 

what are your parameters?

 

how should it work under your parameters?

 

how should it not trigger under your parameters?

Share this post


Link to post
Share on other sites

I tested it....when a profit traget hit and the sell order didn't get executed within a min..the system wouldn't close the postion for me the next min with this small stoploss..I think it has something to do with this line "If Time_elapsed > 1 "...can we really compare times (currenttime Vs. entrytime) in easylanguage? how does it read this value 1? 1 min ? 1 hour? I tried 0001 but no luck.

Share this post


Link to post
Share on other sites
I tested it....when a profit traget hit and the sell order didn't get executed within a min..the system wouldn't close the postion for me the next min with this small stoploss..I think it has something to do with this line "If Time_elapsed > 1 "...can we really compare times (currenttime Vs. entrytime) in easylanguage? how does it read this value 1? 1 min ? 1 hour? I tried 0001 but no luck.

 

you should start with a plot... instead of buy/sell etc.

 

 

read your manual.

Share this post


Link to post
Share on other sites

The graphic below is of a volume bar chart

 

The 7.9% shows that the bar is 7.9 percent complete

with 52.3% selling in that 7.9% and 47.7% buying in that bar so far

 

The percentages are updated with every tick. Runs on volume/tick bars in TradeStation.

 

 

barcomplete1.jpg

Share this post


Link to post
Share on other sites
UmaBlume,

This is very interesting.

"Runs on volume/tick bars in TradeStation."

 

How can I account for volume on a tick bar chart within TS?

 

it counts ticks in a tick chart and volume in volume bars.

 

Our view of time/tick/volume charts is that the passage of time does nothing to motivate price, so we don't use them for trading. Rather it is the occurrence of trade that motivates price movement and more specifically it is an imbalance in that trade that moves price directionally.

 

A tick chart treats all transaction equally so that a buy of a 1 lot carries the same weight as a buy of a 1,000 lot so we use volume charts which let us measure the imbalance and hence have an idea of the strength of the motivation behind price movements.

 

Where we do use time charts is in the serial normalization of financial market data so that absolute values of volume and price volatility can be normalized to the degree that they can be compared instrument to instrument.

 

Below is a scan of popular US Futures contracts for both relative trade volumes and local price volatilities and below that is a scan of some forex pairs for relative local price volatilities.

 

The percentages are percentages of what is normal for that instrument normalized for volume, price volatility and time of day. Times are PST so these shots are about 40 minutes old as I post. This application runs in the TradeStation Radar Screen, updates every minute and includes 400 stocks and ETFs.

 

From these charts we try and play where the action is so we are mostly trading what is hot and not trading what is not.

 

tpt426.jpg

 

tpt427.jpg

 

cheers

 

UrmaBlume

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.