NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 108
Search: Posts Made By: Amnesia
Forum: Sierra Chart August 4th, 2013, 03:05 AM
Replies: 1
Views: 1,241
Posted By Amnesia
Methods of storing last trade information and referencing it?

I was wondering for those of you have setup simple algo rules or trading rules for ACSIL auto trading if you ever had to reference/check if the previous trade was a long or a short for example.

If...
Forum: Sierra Chart July 28th, 2013, 05:05 PM
Replies: 7
Views: 3,767
Posted By Amnesia
You are right, got it to work. Thanks

You are right, got it to work. Thanks
Forum: Sierra Chart July 28th, 2013, 11:12 AM
Replies: 7
Views: 3,767
Posted By Amnesia
vegasfoster setting autoloop = 1 means that...

vegasfoster

setting autoloop = 1 means that for every function call (new bar) the code will be repeated. This doesnt change the fact that if you have something along the lines of the crossover...
Forum: Sierra Chart July 27th, 2013, 07:55 PM
Replies: 7
Views: 3,767
Posted By Amnesia
Executing trade while a bar has not closed yet?

I am trying a way to continously monitor a bar for certain conditions and then executing a trade once that condition has occured. Unfortunately i cannot find examples of how to implement/facilitate...
Forum: Traders Hideout July 26th, 2013, 05:34 AM
Replies: 24
Views: 13,592
Posted By Amnesia
I hope that in this case mike passes the forum on...

I hope that in this case mike passes the forum on to someone else. This is one of the few places where futures are discussed heavily. At least there is an active discussion for Bund and ZN/ZB...
Forum: Trading Journals July 25th, 2013, 04:24 AM
Replies: 661
Views: 123,480
Posted By Amnesia
Nicolas, That is a very interessting Bug,...

Nicolas,

That is a very interessting Bug, did you try giving him the .dll in release and debug mode?
Forum: Trading Journals July 24th, 2013, 05:54 PM
Replies: 661
Views: 123,480
Posted By Amnesia
omni72 , Thanks for solving the issue for...

omni72 ,

Thanks for solving the issue for them, I've uploaded 2 files, one in Debug mode which is 44kb for me, and one in release mode which is 13 KB for me.

You can test this yourself by...
Forum: Trading Journals July 24th, 2013, 11:08 AM
Replies: 661
Views: 123,480
Posted By Amnesia
Not sure whats going on Outlander, Update...

Not sure whats going on Outlander, Update Sierrachart, and compile the sourcecode and you should be good to go.
Forum: Trading Journals July 24th, 2013, 09:55 AM
Replies: 661
Views: 123,480
Posted By Amnesia
This is very odd, just let another friend test it...

This is very odd, just let another friend test it and he says it works fine (he had to update sierrachart though).

How to Use an Advanced Custom Study and Study Collections - Sierra Chart...
Forum: Trading Journals July 24th, 2013, 05:26 AM
Replies: 661
Views: 123,480
Posted By Amnesia
Weird, I recompiled it on a different maschine...

Weird, I recompiled it on a different maschine and set it to release mode, tested it on my girlfriends laptop with a clean updated install of Sierrachart. Works fine again for me, are you sure you...
Forum: Trading Journals July 23rd, 2013, 06:40 PM
Replies: 661
Views: 123,480
Posted By Amnesia
Try this .dll, should work without an issue. I...

Try this .dll, should work without an issue. I just copied it and tested it on a second laptop. Works fine for me. Anyone else having troubles with the study other than lemons?
Forum: Trading Journals July 22nd, 2013, 02:36 PM
Replies: 661
Views: 123,480
Posted By Amnesia
Sorry uploaded the wrong File, here is the...

Sorry uploaded the wrong File, here is the correct one
Forum: Trading Journals July 22nd, 2013, 01:27 PM
Replies: 661
Views: 123,480
Posted By Amnesia
Outlander lemons Hapster MWinfrey I...

Outlander lemons Hapster MWinfrey

I have created a Sierrachart Study to avoid having the spreadsheet open or doing spreadsheet calculations everytime you want a new chart.

The Outer level...
Forum: Traders Hideout July 13th, 2013, 06:36 AM
Replies: 6
Views: 5,212
Posted By Amnesia
Danke/Thanks ;)

Danke/Thanks ;)
Forum: Traders Hideout July 12th, 2013, 07:05 AM
Replies: 6
Views: 5,212
Posted By Amnesia
Prop Firms in Europe Focus on Financial Futures ?

So I was wondering if anybody Knows if there are prop trading Firms in Europe who Specialize in Financial Futures such as FGBL or ZN, ZB, FGBM etc.

Especially if they do Not Focus in statistical...
Forum: Sierra Chart June 25th, 2013, 08:55 PM
Replies: 16
Views: 5,011
Posted By Amnesia
Minor modifications: sc.DataStartIndex =...

Minor modifications:


sc.DataStartIndex = 5;
if (sc.Index > 5)

{

bool Long = sc.Close[sc.Index-3] < sc.Close[sc.Index-4] &&
sc.Close[sc.Index-2] > sc.Close[sc.Index-3] &&
Forum: Sierra Chart June 25th, 2013, 06:23 PM
Replies: 16
Views: 5,011
Posted By Amnesia
Sooo... I have made some modifications to...

Sooo...

I have made some modifications to the code, after i finally was able to understand why vegasfoster was using that for loop (thanks again btw for answering all those pesky pm's)

I...
Forum: Sierra Chart June 25th, 2013, 09:42 AM
Replies: 16
Views: 5,011
Posted By Amnesia
This..... This clarified a shitton i cannot thank...

This..... This clarified a shitton i cannot thank you enough and kind of clarifies a lot of things :D

As for the loop, i guess i should just cut it out then since it serves no use for this right...
Forum: Sierra Chart June 25th, 2013, 09:24 AM
Replies: 16
Views: 5,011
Posted By Amnesia
aslan sc.DataStartIndex = 5; if (sc.Index...

aslan

sc.DataStartIndex = 5;
if (sc.Index > 5)

{

bool Long = sc.Close[sc.Index-3] < sc.Close[sc.Index-4] &&
sc.Close[sc.Index-2] > sc.Close[sc.Index-3] && ...
Forum: Sierra Chart June 25th, 2013, 08:08 AM
Replies: 16
Views: 5,011
Posted By Amnesia
Okay just a small touchup on 2) Once the for...

Okay just a small touchup on 2)

Once the for loop is done it basically repeats the entire process starting again at the top doing calculations but this time for the next bar correct?
Because...
Forum: Sierra Chart June 25th, 2013, 06:30 AM
Replies: 16
Views: 5,011
Posted By Amnesia
aslan Yeah they shouldn't. There are...

aslan

Yeah they shouldn't.

There are two things about the code i still don't understand yet:

1) "if (sc.Index > 5)"

This will essentially skip the first 6 bars, given that the currentbar...
Forum: Sierra Chart June 24th, 2013, 06:13 AM
Replies: 16
Views: 5,011
Posted By Amnesia
vegasfoster Thanks for the idea, i...

vegasfoster

Thanks for the idea, i understand what you are talking about now, will get to work coding then :) Thanks
Forum: Sierra Chart June 23rd, 2013, 05:31 PM
Replies: 16
Views: 5,011
Posted By Amnesia
cory Yes obviously you can inverse the...

cory

Yes obviously you can inverse the conditions to get the opposite for shorts.

I have thought a little bit more about the implementation, i will need to read up on how ACSIL handles indexing...
Forum: Sierra Chart June 22nd, 2013, 06:52 PM
Replies: 16
Views: 5,011
Posted By Amnesia
Renko ACSIL?

So... I have been looking to automate something i am doing manually for higher timeframe charts. Which to be precise is to mark "zones" on higher timeframes after i see 3 consecutive bricks in one...
Forum: Brokers June 16th, 2013, 07:49 PM
Replies: 303
Views: 127,229
Posted By Amnesia
tomgilb I am trying to find information on...

tomgilb

I am trying to find information on the highlighted/bold part of the quote. Where did you receive this information from?

Right now I am highly dissapointed with Velocity dropping EUREX...
Showing results 1 to 25 of 108

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