NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 42
Search: Posts Made By: fctrader
Forum: Off-Topic March 11th, 2012, 05:04 PM
Replies: 5
Views: 1,755
Posted By fctrader
RE: Media Coverup That resolution is not a...

RE: Media Coverup

That resolution is not a binding law. It's proposed legislation that is untenable. From the actual constitution.



The president does now, and always has had the authority...
Forum: NinjaTrader March 10th, 2012, 05:48 PM
Replies: 2
Views: 3,748
Posted By fctrader
To be clear, I know that the data shown doesn't...

To be clear, I know that the data shown doesn't support the hypothetical assumptions that I showed about the direction of the market. I just didn't want to type in a whole string of Time & Sales...
Forum: NinjaTrader March 10th, 2012, 05:42 PM
Replies: 2
Views: 3,748
Posted By fctrader
Plotting the Time and Sales

I am trying to create an indicator that plots the Average Trade Size of the last several trades in Time of Sales. This is a form of Market Profile in a sense, but it doesn't seem to exist within the...
Forum: NinjaTrader March 9th, 2012, 09:46 PM
Replies: 5
Views: 6,151
Posted By fctrader
Sorry I wasn't clear what I meant when I said "To...

Sorry I wasn't clear what I meant when I said "To fix this." What I meant was to make it give the difference instead of the ratio. By doing Close(XXXX)-Close(YYYY) instead of...
Forum: NinjaTrader March 9th, 2012, 05:30 PM
Replies: 20
Views: 8,049
Posted By fctrader
Ah... That explains a lot. You're very...

Ah... That explains a lot.



You're very welcome :)
Forum: NinjaTrader March 9th, 2012, 11:38 AM
Replies: 22
Views: 15,919
Posted By fctrader
I really appreciate all of the explanation of the...

I really appreciate all of the explanation of the Managed vs Unmanaged Approach in NT7. I had not thought much about that, and it has inspired me to go into a little more depth in it. So, thanks to...
Forum: NinjaTrader March 9th, 2012, 11:07 AM
Replies: 20
Views: 8,049
Posted By fctrader
Thanks for posting the pictures. The...

Thanks for posting the pictures.

The differences are interesting. I wonder if it has to do with the way the WMA is calculated between NinjaTrader and MetaTrader. In his code he used "MODE_LWMA"...
Forum: NinjaTrader March 8th, 2012, 06:23 PM
Replies: 20
Views: 8,049
Posted By fctrader
If you don't want to recopy it all, the relevant...

If you don't want to recopy it all, the relevant part is this.

deltaEURUSD = (WMA(Closes[1],MovAvgLength)[0]-WMA(Closes[1],MovAvgLength)[1]);
deltaGBPUSD =...
Forum: NinjaTrader March 8th, 2012, 06:09 PM
Replies: 20
Views: 8,049
Posted By fctrader
danjuma I looked at it again and modified...

danjuma

I looked at it again and modified the necessary parts. Try this side by side, and see if it is closer to what you are expecting. The relevant parts have been commented out and rewritten...
Forum: NinjaTrader March 8th, 2012, 05:38 PM
Replies: 5
Views: 6,151
Posted By fctrader
To fix it, you could simply change the body of...

To fix it, you could simply change the body of the code to read:

{

if (CurrentBars[0]<2)
return;
if (BarsInProgress == 0)
{
double...
Forum: NinjaTrader March 8th, 2012, 05:33 PM
Replies: 5
Views: 6,151
Posted By fctrader
You can get the spread between two symbols, but...

You can get the spread between two symbols, but it will be different in real time than with historic data due to the difference in ticks coming into your PC. For example, I coded an indicator to...
Forum: NinjaTrader March 8th, 2012, 05:02 PM
Replies: 22
Views: 15,919
Posted By fctrader
So, to make sure I'm understanding in regards to...

So, to make sure I'm understanding in regards to the original poster; if he wants to enter a server side order at 9:30 based on his 9:00-9:30 range, he could enter your code into an if statement as...
Forum: NinjaTrader March 8th, 2012, 04:32 PM
Replies: 22
Views: 15,919
Posted By fctrader
@NJMAC Thanks for that. I was about to ask...

@NJMAC
Thanks for that. I was about to ask you why you felt the need to do it the way you were suggesting when your post came up! I like the futures.io (formerly BMT) feature of adding the newest...
Forum: NinjaTrader March 8th, 2012, 03:31 PM
Replies: 22
Views: 15,919
Posted By fctrader
For fun... Here it is with a 4 tick Profit...

For fun... Here it is with a 4 tick Profit Target and a 4 tick Stop Loss. Because it has targets and losses, I have made it so that it only goes long once per day, and short once per day. If you...
Forum: NinjaTrader March 8th, 2012, 03:15 PM
Replies: 22
Views: 15,919
Posted By fctrader
Here is some simple code that does what you want....

Here is some simple code that does what you want. It has no stop-loss / profit-targets, and it doesn't display the opening range on the chart, but those are easy to add yourself.

I could be...
Forum: NinjaTrader March 8th, 2012, 02:27 PM
Replies: 20
Views: 8,049
Posted By fctrader
Hi Danjuma, I didn't get a chance to see...

Hi Danjuma,

I didn't get a chance to see your reply until today, as I don't get on the forum here everyday. Thank you for posting the two indicators side by side. As I hopefully made clear...
Forum: NinjaTrader February 29th, 2012, 09:46 AM
Replies: 20
Views: 8,049
Posted By fctrader
Danjuma, Your welcome. A few important things...

Danjuma,
Your welcome. A few important things to note.

My version is based on percent difference from the prior day SMA. I think that his was based on absolute difference in the pairs other...
Forum: NinjaTrader February 28th, 2012, 06:57 PM
Replies: 1
Views: 3,389
Posted By fctrader
From Ninjatrader help Something like ...

From Ninjatrader help


Something like
if(Stochastics(7,14,3).D[1] < 20 )
{
SendMail("[email protected]", "[email protected]", "Trade Alert", "YourStock is OverSold");
}
should work.
Forum: NinjaTrader February 28th, 2012, 04:15 PM
Replies: 20
Views: 8,049
Posted By fctrader
After playing with it for a few minutes on a...

After playing with it for a few minutes on a daily chart from the last 3000 days or so, the most interesting aspect seems to be the tendency for these relatively stable currencies to return to parity...
Forum: NinjaTrader February 28th, 2012, 04:04 PM
Replies: 20
Views: 8,049
Posted By fctrader
Hi Danjuma, I am not a coding wizard like some...

Hi Danjuma, I am not a coding wizard like some of on the site, but it looked like an interesting project, so I coded my own version. I used an SMA instead of a Weighted average, and I found it to...
Forum: Trading Journals March 10th, 2011, 12:43 AM
Replies: 26
Views: 6,959
Posted By fctrader
Thanks for the suggestion Mike. I haven't listed...

Thanks for the suggestion Mike. I haven't listed a history here so far.

When most kids are dreaming of being a fireman, astronaut, pilot, or movie star, I am not kidding when I say that I always...
Forum: Trading Journals March 9th, 2011, 11:50 PM
Replies: 26
Views: 6,959
Posted By fctrader
Gut-wrenching trading

Sorry for the late post today. The trades for yesterday and today's session will be posted in the morning. It's been a stressful 24 hours, so the journal took a back seat.

Choppy trading today....
Forum: Trading Journals March 8th, 2011, 09:11 AM
Replies: 26
Views: 6,959
Posted By fctrader
Results for Mar 7 & todays coin toss

The Results
Narrow Target/Wide Stops - Total to date: - $64.50/ ct
.
+40.80 AM
-129.20 PM
7 wins : 3 losses
.
Wide Target/Narrow Stops - Total to date: -$172.00/ct
.
Forum: Trading Journals March 7th, 2011, 09:02 AM
Replies: 26
Views: 6,959
Posted By fctrader
Short twice today

Go Short at 9:00 CST
Go Short at 14:26 CST

AM
ES Narrow stops
Contract 1 10:4
Contract 2 15:6

YM Wide stops
Contract 1 9:23
Forum: Trading Journals March 6th, 2011, 11:06 PM
Replies: 26
Views: 6,959
Posted By fctrader
Day 4 Results

--4 days have gone by for my monthly journal, and it is having several effects on me that are not apparent from the topic selection of the last 4 days. Although I have so far limitted the scope of...
Showing results 1 to 25 of 42

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