NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 22 of 22
Search: Posts Made By: monpere
Forum: NinjaTrader January 1st, 2013, 03:08 PM
Replies: 64
Views: 36,200
Posted By monpere
Rollover volume

I roll over futures contracts based on volume. I wrote the following NinjaTrader indicators, RolloverVolume (https://nexusfi.com/download/ninjatrader-7/indicators/852-download.html?view) and...
Forum: NinjaTrader December 28th, 2012, 05:50 PM
Replies: 64
Views: 36,200
Posted By monpere
You did not mention order confirmation before. ...

You did not mention order confirmation before. Looks like you have Order Confirmation active and the order confirmation pop-up window is receiving some of the key strokes, causing the unintended...
Forum: NinjaTrader December 28th, 2012, 02:47 PM
Replies: 64
Views: 36,200
Posted By monpere
You have some other code in there that are not...

You have some other code in there that are not relevant. Try the following code. It puts a 1 sec delay between each keystroke.


;###
;### Control-B-Left Mouse Key -> Ninjatrader Buy at cursor...
Forum: NinjaTrader December 28th, 2012, 12:33 PM
Replies: 64
Views: 36,200
Posted By monpere
All it is doing is duplicating the keystrokes a...

All it is doing is duplicating the keystrokes a user would do to enter a Sell Limit order above the price. Try do this manually and make sure this is working manually using Right-Click, ten Press...
Forum: NinjaTrader December 21st, 2012, 04:37 PM
Replies: 64
Views: 36,200
Posted By monpere
Eye Breaks

Lately my eyes have been bothering me from staring at the screen so long. Maybe my age is catching up to me. I learned about the 20/20/20 vision rule for people who work at computer screens all...
Forum: NinjaTrader December 16th, 2012, 11:27 PM
Replies: 64
Views: 36,200
Posted By monpere
Free Stock historical Tick Data

I stumbled upon this website netfonds.no where you can download free historical tick data for equities. I use Interactive Brokers which does not provide historical tick data, so i have to record...
Forum: NinjaTrader November 3rd, 2012, 12:18 PM
Replies: 64
Views: 36,200
Posted By monpere
By the way, all the code in this thread can be...

By the way, all the code in this thread can be combined into one script. All the code in the thread is extracted from one single script (Included below) that I run once in the morning when I turn on...
Forum: NinjaTrader October 9th, 2012, 09:07 AM
Replies: 64
Views: 36,200
Posted By monpere
To save the file in .png format replace the...

To save the file in .png format replace the following line:

SendInput c:\tmp\%symbol%_%tag%_%A_MMM%%A_DD%_%A_Hour%h%A_Min%m%A_Sec%.jpg{Enter}

with this line:

SendInput...
Forum: NinjaTrader October 8th, 2012, 07:33 PM
Replies: 64
Views: 36,200
Posted By monpere
I don't think this can be done using normal...

I don't think this can be done using normal windows functionality. But if you use a program like Irfanview instead of MS Paint, it has an option to capture the current monitor only rather then the...
Forum: NinjaTrader October 8th, 2012, 07:20 PM
Replies: 64
Views: 36,200
Posted By monpere
In Vista the default save type rom MS Paint is...

In Vista the default save type rom MS Paint is .jpg, it might be .bmp in Windows XP. I can add a couple of lines to force to save as .jpg or .png
Forum: NinjaTrader October 8th, 2012, 04:34 PM
Replies: 64
Views: 36,200
Posted By monpere
Save Chart or Desktop

Here's how I save my charts. Ctrl-S to save the current chart, Ctrl-Shift-S to save the entire desktop for multiple charts. The image names are automatically named using the chart name, the current...
Forum: NinjaTrader September 27th, 2012, 03:31 PM
Replies: 64
Views: 36,200
Posted By monpere
Mouse Key Mappings

One of the things I do everyday during, and after market, is markup all my charts with every signal that occurred during the day. I generally use the NT Line Segment Tool, the Ellipse, and the Line...
Forum: NinjaTrader September 19th, 2012, 10:36 AM
Replies: 64
Views: 36,200
Posted By monpere
You are probably passing in a weird character to...

You are probably passing in a weird character to the function, or the website is returning a weird character. If you feel comfortable sharing the info, what is the url of the web page you are trying...
Forum: NinjaTrader September 18th, 2012, 06:50 PM
Replies: 64
Views: 36,200
Posted By monpere
Scroll NT chart vertically

With NT, you can scroll a chart horizontally along the time axis using the arrow keys or the mouse wheel, but you cannot scroll a chart vertically along the price axis using these keys. Why not? ...
Forum: NinjaTrader September 15th, 2012, 09:59 AM
Replies: 64
Views: 36,200
Posted By monpere
NT Save Workspace

Ninjatrader 'Save Workspace' does not seem to save files to disk immediately (bug?). If NT crashes or terminates abnormally, your workspace may not have been saved, and sometimes after crashes, the...
Forum: NinjaTrader September 13th, 2012, 05:55 PM
Replies: 64
Views: 36,200
Posted By monpere
Slight revision of the above script. The line...

Slight revision of the above script. The line below:



Should be replaced with the following lines:
Forum: NinjaTrader September 12th, 2012, 02:09 PM
Replies: 64
Views: 36,200
Posted By monpere
Fed Events

I don't trade the news, but a couple of weeks ago, I almost got caught in an unusual market move which seems was a reaction to a Bernanke speech. I normally use the MarketReminders...
Forum: NinjaTrader September 10th, 2012, 09:47 AM
Replies: 64
Views: 36,200
Posted By monpere
perryg, Put the following 3 lines after the...

perryg,

Put the following 3 lines after the line that says 'desktopWidth += M%A_Index%_Width'

l := Monitor%A_Index%Left
t := Monitor%A_Index%Top
MsgBox Monitor %A_Index% at %l%, %t%


This...
Forum: NinjaTrader September 10th, 2012, 07:52 AM
Replies: 64
Views: 36,200
Posted By monpere
I am using Windows Vista. Many of the more...

I am using Windows Vista. Many of the more advanced built in functions in AutoHotKey return null or 0 with older Windows versions 95/98/ME/NT/2000/XP. You may want to simplify the script by...
Forum: NinjaTrader September 10th, 2012, 02:53 AM
Replies: 64
Views: 36,200
Posted By monpere
Switch Monitors

As a scalper I found I wanted to be able to quickly switch from one monitor, to a chart on another monitor far away, in order to enter a quick trade. Dragging the mouse across multiple monitors, and...
Forum: NinjaTrader September 8th, 2012, 03:34 PM
Replies: 64
Views: 36,200
Posted By monpere
Ninjatrader Cursor Buy/Sell

Several people have discussed how to quickly place orders on Ninjatrader charts. I do this using the following script. It basically issues Ninjatrader buy/sell stop or limit using the NT chart...
Forum: NinjaTrader September 8th, 2012, 02:45 PM
Replies: 64
Views: 36,200
Posted By monpere
AutoHotkey Scripts

I use AutoHotkey (http://www.autohotkey.com/docs/Tutorial.htm) extensively in my trading to automate much of the routine tasks that I have to do during the trading day. I want to include here some...
Showing results 1 to 22 of 22

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 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