NexusFi: Find Your Edge


Home Menu

 





Enter to win: Lifetime license to NinjaTrader Trading Platform


Discussion in Feedback and Announcements

Updated
      Top Posters
    1. looks_one Big Mike with 12 posts (7 thanks)
    2. looks_two Treggs with 3 posts (5 thanks)
    3. looks_3 mainstream with 3 posts (1 thanks)
    4. looks_4 Slipknot511 with 2 posts (3 thanks)
      Best Posters
    1. looks_one bukkan with 16 thanks per post
    2. looks_two Jaguar52 with 5 thanks per post
    3. looks_3 Treggs with 1.7 thanks per post
    4. looks_4 Big Mike with 0.6 thanks per post
    1. trending_up 29,055 views
    2. thumb_up 99 thanks given
    3. group 56 followers
    1. forum 88 posts
    2. attach_file 22 attachments




Closed Thread
 
Search this Thread

Enter to win: Lifetime license to NinjaTrader Trading Platform

  #81 (permalink)
 
gregid's Avatar
 gregid 
Wrocław, Poland
 
Experience: Intermediate
Platform: NinjaTrader, Racket
Trading: Ockham's razor
Posts: 650 since Aug 2009
Thanks Given: 320
Thanks Received: 623

 
Code
                            
// 
// Copyleft (C) 2009, gregid.
//
#region Using declarations
using Your.Brain;
using Your.Brain.Creativity;
 
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Xml.Serialization;
using NinjaTrader.Cbi;
using NinjaTrader.Data;
using NinjaTrader.Indicator;
using NinjaTrader.Strategy;
#endregion
// This namespace holds all strategies and is required. Do not change it.
namespace NinjaTrader.Strategy
{
 
/// <summary>
 /// Strategy to win the free NinjaTrader Licence.
 /// </summary>
 
[Description("Strategy to win the free NinjaTrader Licence.")]
 public class 
WinTheFreeNinjaLicence Strategy
 
{
         
#region Variables
         
private int     determinationLevel 10;
         private 
string  strSubmissionDeadline "25/06/2010";
         private 
string  strResultDate "30/06/2010";
         private 
DateTime submissionDeadline;
         private 
DateTime resultDate;
         private 
int     newUser 1;
         private 
string finalwarning;
         private 
double  entryPrice 0;
         private 
IOrder entryOrder null// This variable holds an object representing our entry order
        #endregion
  /// <summary>
  /// This method is used to configure the strategy and is called once before any strategy method is called.
  /// </summary>
  
protected override void Initialize()
  {
              
myPostRankingIndy(NumberOfThanks).Plots[0].Pen.Color Color.Orange;
              
Add(myPostRankingIndy(NumberOfThanks));
              
CalculateOnNewPostSubmit true;
              
EntryHandling EntryHandling.AllEntries;
  }
  protected 
override void OnStartUp()
        {
            
submissionDeadline Convert.ToDateTime(strSubmissionDeadline);
            
resultDate Convert.ToDateTime(strResultDate);
        }
  
/// <summary>
  /// Called on each competition update event (incoming competition update).
  /// </summary>
  
protected override void OnCompetitionUpdate()
  { 
            if (
Historical)
                return;
            if (
DateTime.Now submissionDeadline.AddDays(1))
            {
                if (
NewPostSubmitted || myPostRankingIndy(NumberOfThanks)[0] > 1)
                {
                    
// Get a price for entries.
                    
entryPrice LastEntryPrice 1;
                    
entryOrder EnterCompetitionLimit(0truedeterminationLevelentryPrice"Pick Me! Pick Me!");
                }
            }
            else if (
DateTime.Now submissionDeadline.AddDays(1) && DateTime.Now resultDeadline.AddDays(1))
            {
                Print(
"Pick Me! Pick Me!");
            }
            else
            {
                if (
BigMikeTrading.Decision.Successfull == true)
                {
                    Print(
"Good Choice! Big Mike Trading is awesome! I Love NinjaTrader! ");
                    
Sing("Happy Birthday to you");
                    
Sing("Happy Birthday to you");
                    
Sing("Happy Birthday Dear BigMikeTrading.com");
                    
Sing("Happy Birthday to you!");
                    
ExitCompetition();
                }
                if (
BigMikeTrading.Decision.Successfull == false)
                {
                    
ExitCompetition();
                    for (
int i 0i+1i++) // ]:-> 
                    
{
                        Print(
"I will hunt you till the end of the world! (assuming you won't disable the strategy first...;)");
                    }
                }
            }
  }
  protected 
override void OnOrderUpdate()
        {
            if (
entryOrder != null && entryOrder == order)
            {
                
// Handle entry orders here. The entryOrder object allows us to identify that the order that is calling the OnOrderUpdate() method is the entry order.
                
if (order.OrderState == OrderState.Rejected)
                {
                    if (
finalwarning "$&$!£%!£& ^$%&$%& *&^%$~@<>#!!!!!!")
                    {
                        
objection();
                        
entryOrder EnterCompetitionLimit(0truedeterminationLevelentryPrice"competition order to be resubmitted");
                    }
                    else
                    {
                        
BigMikeTrading.Logout();
                        
BigMikeTrading.Users.Add("gregid" newUser"cheeky;)");
                        
BigMikeTrading.Login("gregid" newUser"cheeky;)");
                        
entryOrder EnterCompetitionLimit(0truedeterminationLevelentryPrice"competition order to be resubmitted");
                        
newUser++;
                    }
                }
            }
            if (
entryOrder != null && entryOrder == order)
            {
                
// Reset the entryOrder object to null if order was cancelled without any fill
                
if (order.OrderState == OrderState.Cancelled && order.Filled == 0)
                {
                    
entryOrder null;
                }
            }
        }
  
override your objection()  //;)
        
{
            
Smile(":)");
        }
  
#region Properties
  /// <summary>
  /// </summary>
  
[Description("Level of determination to win")]
  [
Category("Parameters")]
  public 
int DeterminationLevel
  
{
   
get { return determinationLevel; }
   
set determinationLevel Math.Max(1value); }
  }
  [
Description("Submission Deadline. Format: dd/mm/yyyy")]
  [
Category("Parameters")]
  public 
string StrSubmissionDeadline
  
{
   
get { return strSubmissionDeadline; }
   
set strSubmissionDeadline value; }
  }
  [
Description("Result Date. Format: dd/mm/yyyy")]
  [
Category("Parameters")]
  public 
string StrResultDate
  
{
   
get { return strResultDate; }
   
set strResultDate value; }
  }
  
#endregion
 
}


Thanked by:

Can you help answer these questions
from other members on NexusFi?
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
NexusFi Journal Challenge - April 2024
Feedback and Announcements
Exit Strategy
NinjaTrader
Are there any eval firms that allow you to sink to your …
Traders Hideout
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
61 thanks
Funded Trader platforms
38 thanks
NexusFi site changelog and issues/problem reporting
27 thanks
GFIs1 1 DAX trade per day journal
18 thanks
The Program
18 thanks
  #82 (permalink)
 MichaelW 
Melbourne, Victoria, Australia
 
Experience: Intermediate
Platform: Ninja Trader
Broker: Zenfire Mirus & IQ
Trading: ES CL GC TF 6E 6A Futures
Posts: 5 since Apr 2010
Thanks Given: 20
Thanks Received: 8

Well Well Well - I was going to enter this one, but after reading all the creative ideas and post from other members- well lets just say it is proof (not that I needed any) that this is "THE SITE"! on ya all! congrats Mike and thanks.

  #83 (permalink)
 
flight302's Avatar
 flight302 
florida
 
Experience: Intermediate
Platform: Ninja Trader, TOS
Broker: Mirus/Vision/TOS/AMP
Trading: Currency Futures, Oil
Posts: 18 since Dec 2009
Thanks Given: 16
Thanks Received: 7





Happy Anniversary!!

Attached Thumbnails
Click image for larger version

Name:	churchsign12.jpg
Views:	260
Size:	42.0 KB
ID:	16072  
Thanked by:
  #84 (permalink)
 
Haverchuck's Avatar
 Haverchuck 
California
 
Experience: Intermediate
Platform: NT
Trading: Index Futures
Posts: 115 since Jul 2009
Thanks Given: 88
Thanks Received: 93

Here's a trader puzzle. This image contains 8 relatively well known traders. The objective is to match the traders on the left with the trading perspectives they're known for on the right.

If you get stuck, an answer key is also attached.

Attached Thumbnails
Click image for larger version

Name:	Trader_Puzzle.png
Views:	281
Size:	717.7 KB
ID:	16075   Click image for larger version

Name:	Trader_Puzzle_Key.png
Views:	284
Size:	21.1 KB
ID:	16076  
Thanked by:
  #85 (permalink)
 
tbondtrader's Avatar
 tbondtrader 
midwest
 
Experience: Intermediate
Platform: ninja trader+tws
Broker: amp/cqg
Trading: zb and es
Posts: 434 since Jul 2009
Thanks Given: 1,042
Thanks Received: 474

thank you for your forum........... its all about lightning the candle..............ala dennis bolze.........etc........or lightning/lifting the pocket.............

Attached Thumbnails
Click image for larger version

Name:	ZB 09-10  6_22_2010 (5 Min)NO LONG HERE AND LONG HERE.jpg
Views:	279
Size:	139.6 KB
ID:	16110  
  #86 (permalink)
ptop
Vancouver BC
 
Posts: 2 since Sep 2009
Thanks Given: 0
Thanks Received: 1

Big Mike's Trading Forum (Nasdaq:futures.io (formerly BMT)F) Is up 237% since it’s opening day of June 10, 2009 and an amazing 534% from its IPO price of $20.00 a share. Big Mike’s Trading Forum offers traders from the novice up to the professional a wealth of educational material to help them become one of the 10% who make money instead of the 90% who lose money in this industry without Big Mike’s site. No wonder so many traders flock to Big Mike’s with the Traders Hideout, Programmers Paradise, Journals, Indicator Downloads and the all important Psychology and money management threads, they even have educational webinars and Industry leader webinars, what’s not to love about this site? It has everything for everyone!
Most analyst agree that with the market share Big Mike hold and hundreds jumping on board monthly that the stock (Nasdaq:futures.io (formerly BMT)F) could see another 100% to 300% or more move in the next year, this is why this trader is LONG Big Mike’s Trading Forum!

Congratulations on an amazing year and many more.

:bmt-rocks:

Attached Thumbnails
Click image for larger version

Name:	Bib Mike's Trading Forum.PNG
Views:	263
Size:	97.5 KB
ID:	16155  
  #87 (permalink)
 
ZTR's Avatar
 ZTR 
 
Experience: Advanced
Platform: NinjaTrader7
Broker: Mirus RCG/Zen-Fire
Trading: CL & 6e, looking at ES, ZB and AU again.
Posts: 2,096 since Nov 2009
Thanks Given: 1,099
Thanks Received: 1,393


ptop View Post
Big Mike's Trading Forum (Nasdaq:futures.io (formerly BMT)F) Is up 237% since it’s opening day of June 10, 2009 and an amazing 534% from its IPO price of $20.00 a share. ...

Most analyst agree that with the market share Big Mike hold and hundreds jumping on board monthly that the stock (Nasdaq:futures.io (formerly BMT)F) could see another 100% to 300% or more move in the next year, this is why this trader is LONG Big Mike’s Trading Forum!

Congratulations on an amazing year and many more.

I hope the all the members got options!

R.I.P. Andy Zektzer (ZTR), 1960-2010.
Please visit this thread for more information.
Visit my NexusFi Trade Journal
  #88 (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,397 since Jun 2009
Thanks Given: 33,173
Thanks Received: 101,537

Thank you to all who participated! The creativity some of you have shown is quite awesome!

The contest is now over, and the threads closed to new entries. The moderators will be selecting the winners in each category between now and the end of June, and we will announce the winners soon.

Thx,
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 Started this thread
  #89 (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,397 since Jun 2009
Thanks Given: 33,173
Thanks Received: 101,537

First, I want to say thank you to those who entered the contest and followed the rules! And I want to once again say thank you to everyone on the forum for making nexusfi.com (formerly BMT) what it is today!

CONGRATULATIONS, THE WINNER FOR THE LIFETIME LICENSE OF NINJATRADER 7 IS:

bukkan

The winner was selected by the moderators. I will be contacting you via Private Message so you can claim your prize.

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 Started this thread
Thanked by:

Closed Thread



Last Updated on June 30, 2010


© 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