NexusFi: Find Your Edge


Home Menu

 





How to make program close all positions by 4:15PM EST?


Discussion in EasyLanguage Programming

Updated
      Top Posters
    1. looks_one Big Mike with 2 posts (0 thanks)
    2. looks_two ABCTG with 1 posts (2 thanks)
    3. looks_3 Quick Summary with 1 posts (0 thanks)
    4. looks_4 honoluluhustler with 1 posts (0 thanks)
    1. trending_up 3,151 views
    2. thumb_up 2 thanks given
    3. group 2 followers
    1. forum 4 posts
    2. attach_file 0 attachments




Closed Thread
 
Search this Thread

How to make program close all positions by 4:15PM EST?

  #1 (permalink)
honoluluhustler
Honolulu + Hawaii / USA
 
Posts: 18 since Jul 2014
Thanks Given: 16
Thanks Received: 1

I have another question. Is it possible to make the trading bot close all positions by a certain time? I plan to use Global Futures and the $500 intraday trading margin and holding a postion past 4:15pm EST results in full margin.

Mahalo,

Honolulu Hustler

Inputs: Price( Open ),
Length1 ( 15 ),
Length2 ( 20 )
Cts ( 4 ),
TGT ( 100 ),
STP ( 75 );

Vars: ExpAv1 ( 0 ),
PrevNetProfit ( 0 ),
PrevNetLoss ( 0 ),
StopTrading (false),
ROC1 ( 0 );

ExpAv1 = XAverage ( Price, Length1 ) ;
ROC1 = ( PRICE - PRICE[Length2] ) / PRICE[Length2] * 100 ; { RATE OF CHANGE }

if Date <> Date [1] then
begin
PrevNetProfit = NetProfit;
StopTrading = false;
end;

if NetProfit >= PrevNetProfit + 100 then StopTrading = true;

if Date <> Date [1] then
begin
PrevNetLoss = NetLoss;
StopTrading = false;
end;

if NetLoss >= PrevNetLoss + 80 then StopTrading = true;

{Buy or short sell contracts at exponential average crossovers}

if volume > 5000 and ROC1 > 0 and Price[1] crosses above ExpAv1[1] then
begin
buy ( "buy") Cts contracts next bar at market ;

setprofittarget (TGT);
setstoploss (STP);

end;

value97 = text_new ( D, T, ExpAv1, "*" );
text_setcolor (Value97, Cyan);


Can you help answer these questions
from other members on NexusFi?
How to apply profiles
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
NexusFi Journal Challenge - May 2024
Feedback and Announcements
REcommedations for programming help
Sierra Chart
Trade idea based off three indicators.
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
48 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
26 thanks
Bigger Wins or Fewer Losses?
24 thanks
GFIs1 1 DAX trade per day journal
20 thanks
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,435 since Apr 2013
Thanks Given: 482
Thanks Received: 1,628


honoluluhustler,

yes, this is doable. Use an input for the time when you want to close out the trades.
Then check for
 
Code
If Time > StopTime then
begin
//exit your open trades

end;
You might want to check for Time < StopTime when you open new trades, otherwise your signal might just trigger a new entry just after you closed it out.

Regards,

ABCTG

Follow me on Twitter
Thanked by:
  #4 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,446 since Jun 2009
Thanks Given: 33,220
Thanks Received: 101,610

@honoluluhustler are you affiliated with Global Futures in any way?

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal
  #5 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,446 since Jun 2009
Thanks Given: 33,220
Thanks Received: 101,610

Closing this thread as a duplicate of:



Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal

Closed Thread



Last Updated on July 7, 2014


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts