NexusFi: Find Your Edge


Home Menu

 





Introduce yourself here!


Discussion in Traders Hideout

Updated
      Top Posters
    1. looks_one Big Mike with 147 posts (3,966 thanks)
    2. looks_two nakachalet with 57 posts (17 thanks)
    3. looks_3 xplorer with 46 posts (53 thanks)
    4. looks_4 mfbreakout with 35 posts (24 thanks)
      Best Posters
    1. looks_one roonius with 80 thanks per post
    2. looks_two wh with 56 thanks per post
    3. looks_3 George with 47 thanks per post
    4. looks_4 Big Mike with 27 thanks per post
    1. trending_up 14,257,360 views
    2. thumb_up 12,017 thanks given
    3. group 6,319 followers
    1. forum 10,646 posts
    2. attach_file 94 attachments




 
Search this Thread

Introduce yourself here!

  #7501 (permalink)
 jerry7201 
Knoxville TN USA
 
Experience: Beginner
Platform: NinjaTrader
Trading: emini ES
Posts: 2 since Jun 2017
Thanks Given: 0
Thanks Received: 1

Hi everyone. This is jerry7201. I am new to forums so I am learning as I go. Just getting back into trading. Looking to trade theE-mini. Using NinjaTrader. Starting with some strategies using bollinger bands. I am interested in finding friends to learn to trade with.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
MC PL editor upgrade
MultiCharts
Strategy stop orders partially filled
EasyLanguage Programming
REcommedations for programming help
Sierra Chart
Cheap historycal L1 data for stocks
Stocks and ETFs
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
  #7502 (permalink)
ira tei
Boston MA
 
Posts: 5 since Jun 2017
Thanks Given: 0
Thanks Received: 0

Hi, I am new to the site - looks like a load of friendly people so I hope I can find someone to help me out. I have been trading off and on for 20 years and hopefully have gotten over most hurdles though, of course, there is always something new to learn with the markets. I look at about one future in almost every group: a financial, a currency, a grain, a metal, a meat and an energy.
I coded my indicator in Think or Swim's language. But now that I am with a javascript outfit (Tradovate). I look at the examples of indicators in javascript and can't quite make sense of how to code in it. My ToS coding was only about 12 lines long - is there anyone who can put my math into javascript? Thanks, Ira

Reply With Quote
  #7503 (permalink)
ira tei
Boston MA
 
Posts: 5 since Jun 2017
Thanks Given: 0
Thanks Received: 0


I am asking because I have a need for some help with javascript in order to code my indicator. Please let me know if anyone has helped out. Thanks, Ira


mcesar View Post
Hi all, I've been trading Russell 2000 and Nasdaq - I've made money, but would like to automate my strategies, I have very limited programming skills. In addition, I would like to start to trade the Bond market and I'm also interested in Options - what is the best place I can go to educate myself?

Appreciate your response


Reply With Quote
  #7504 (permalink)
Gosuboss
Frankfurt am Main
 
Posts: 277 since Jun 2017
Thanks Given: 5
Thanks Received: 21

Hi Guys,

I just wanted to quickly introduce myself.
My name is Lutz Krauss from Frankfurt am Main, Germany. 32 years old.
Trader since 5 years, I started with trading Forex via MT4 with little success. Now I want
to try my luck with Futures and Level 2 Market Data.
I hope to learn a lot from the more experienced Traders here.


Best Regards

Gosuboss

Reply With Quote
Thanked by:
  #7505 (permalink)
hcorpion
United States key west fl
 
Posts: 1 since May 2014
Thanks Given: 0
Thanks Received: 0

hi trying to have this conversion from tradestaion to think or swim
---------------------------------------------------------------------------
[LegacyColorValue = true];

Inputs:
StandardColor(Red),
FirstDate(LastCalcDate),
NumDays(3),
PivotType(0);

var:
ii(0),
BeginDate(CalcDate(FirstDate,-NumDays+1)),
EndDate(FirstDate),pDRange(0),pDH(0),pDL(0),pDC(0),pDO(0);

var:
kCP ( 1 ),
kR1 ( 2 ),
kS1 ( 3 ),
kR2 ( 4 ),
kS2 ( 5 ),
kR3 ( 6 ),
kS3 ( 7 ),
kS2S3( 8 ),
kS1S2( 9 ),
kCPS1( 10 ),
kCPR1( 11 ),
kR1R2( 12 ),
kR2R3( 13 ),
kMax ( kR2R3 ); { 13 }

Array:
LineID [ 13 ](-1), { should all be kMax }
SRValue [ 13 ](-1),
TextID [ 13 ](-1),
TextLabel[ 13 ]("");

If CurrentBar = 1 then Begin
TextLabel[ kCP ] = "CP";
TextLabel[ kR1 ] = "R1";
TextLabel[ kS1 ] = "S1";
TextLabel[ kR2 ] = "R2";
TextLabel[ kS2 ] = "S2";
TextLabel[ kR3 ] = "R3";
TextLabel[ kS3 ] = "S3";

TextLabel[ kS2S3 ] = "S2S3";
TextLabel[ kS1S2 ] = "S1S2";
TextLabel[ kCPS1 ] = "CPS1";
TextLabel[ kCPR1 ] = "CPR1";
TextLabel[ kR1R2 ] = "R1R2";
TextLabel[ kR2R3 ] = "R2R3";
end;


if false then begin
{ dummy plots to allow user choose their own colors in the standard way }
plot1(0,"S1R1");
plot2(0,"S2R2");
plot3(0,"CS3R3");
plot4(0,"CP");
end;
If DataCompression < 2 { intraday or tick bars }
and Date >= BeginDate and Date <= EndDate then begin
if Date = Date[ 1 ] then begin { other bars in day }
For ii = kCP to kMax begin
TL_SetEnd( LineID[ ii ], Date, Time, SRValue[ ii ] ) ;
end; { for }
end { if Date = Date[ 1 ] }
else Begin { first bar in day }
pDH = HighD(1); pDL = LowD(1); pDC = CloseD(1); pDO = OpenD(1);
pDRange = pDH - pDL;
if PivotType = 1 then SRValue[ kCP ] = (pDH + pDL + O)/3
else if PivotType = 2 then SRValue[ kCP ] = (pDH + pDL + O + O)/4
else if PivotType = 3 then SRValue[ kCP ] = (pDH + pDL + pDC + O)/4
else if PivotType = 4 then SRValue[ kCP ] = (pDH + pDL + pDC + pDO)/4
else SRValue[ kCP ] = (pDH + pDL + pDC)/3;

SRValue[ kR1 ] = SRValue[ kCP ] + pDRange/2;
SRValue[ kS1 ] = SRValue[ kCP ] - pDRange/2;
SRValue[ kR2 ] = SRValue[ kCP ] + pDRange;
SRValue[ kS2 ] = SRValue[ kCP ] - pDRange;
SRValue[ kR3 ] = SRValue[ kR2 ] + pDRange;
SRValue[ kS3 ] = SRValue[ kS2 ] - pDRange;

SRValue[ 8 ] = (SRValue[ kS3 ]+SRValue[ kS2 ])/2;
SRValue[ 9 ] = (SRValue[ kS2 ]+SRValue[ kS1 ])/2;
SRValue[ 10 ] = (SRValue[ kCP ]+SRValue[ kS1 ])/2;
SRValue[ 11 ] = (SRValue[ kCP ]+SRValue[ kR1 ])/2;
SRValue[ 12 ] = (SRValue[ kR1 ]+SRValue[ kR2 ])/2;
SRValue[ 13 ] = (SRValue[ kR2 ]+SRValue[ kR3 ])/2;

For ii = kCP to kMax Begin
{ create lines }
LineID[ ii ] = TL_New(Date,Time,SRValue[ ii ],Date[ 0 ],Time,SRValue[ ii ]);
print("created line ", ii:0:0, " at ", SRValue[ ii ]);
TL_SetExtLeft (LineID[ ii ],false);
TL_SetExtRight(LineID[ ii ],false);
if ii = kCP then
TL_SetColor(LineID[ ii ],GetPlotColor(4))
else if ii = kS1 or ii = kR1 then
TL_SetColor(LineID[ ii ],GetPlotColor(1))
else if ii = kS2 or ii = kR2 then
TL_SetColor(LineID[ ii ],GetPlotColor(2))
else if ii = kS3 or ii = kR3 then
TL_SetColor(LineID[ ii ],GetPlotColor(3))
else
TL_SetColor(LineID[ ii ],StandardColor);

{ create text labels }
TextID[ ii ] = Text_New(Date,Time,SRValue[ ii ],TextLabel[ ii ]);
Text_SetStyle(TextID[ ii ],1,2); { 1: HAlign=right, 2: VAlign=Centered }
if ii = kCP then
Text_SetColor(TextID[ ii ],GetPlotColor(4))
else if ii = kS1 or ii = kR1 then
Text_SetColor(TextID[ ii ],GetPlotColor(1))
else if ii = kS2 or ii = kR2 then
Text_SetColor(TextID[ ii ],GetPlotColor(2))
else if ii = kS3 or ii = kR3 then
Text_SetColor(TextID[ ii ],GetPlotColor(3))
else
Text_SetColor(TextID[ ii ],StandardColor);

{ set line style of the "in-between" levels }
If ii > kS3 then
TL_SetStyle(LineID[ ii ],Tool_dotted);
end; { for }
end; { else }
end;

Reply With Quote
  #7506 (permalink)
jrjjs
Orlandor Florida
 
Posts: 2 since Jun 2017
Thanks Given: 1
Thanks Received: 1

My name is Yan.I was born in Hengyang City, Hunan Province of China, in 2007,I graduated from Jilin University of finance major, then I joined a futures company in Beijing and working for six years. in 2012, I left the futures company with a colleague, and then as a partner founded a new company, we foucus on the Quantitive Trading and High Frequency Trading,We are also Internet finance technology company, our products services to stocks, futures, foreign exchange, foreign stocks, Hong Kong stocks, we study trading strategies, proprietary trading.
Thank you Big Mike,I look forward to learning more from this forum.

Reply With Quote
  #7507 (permalink)
grayTrades
Noumea,newcaledonia
 
Posts: 1 since Jun 2017
Thanks Given: 0
Thanks Received: 0

Hi I'm new at trading and hoping to find the right way to start with like minded people we can share things and learn from each other which is wonderful.
i am a lifelong student ,in business, investing and now trading and want to change my work as a traveling salesman for 30 years ,and to trade online as a futures trader.
I find the DOM trading to be very interesting after going through studying about charts and indicators for a while ,but the best thing I have picked up so far is to know that no one realy knows which way it goes.
So then is what to do then? we must find an edge and let the probabilities over time play out in our favour by position sizing each trade to be able to fullfil our expectancy .
I learned a lot in pyschology and must practise those things on a daily basis like part of my day schedual of living life and dealing with this world and the things that can happen good or bad.
I will like to be humble and want to learn as much as i possibly can and use it for my families benifit and if I can succeed as i want to ,i would like to share that with others when i'm ready to do so.and hope they too will benifit a good life and fulfillment by being a winning.

thanks for your time and have a great day!trader

Reply With Quote
  #7508 (permalink)
 jamesw 
Richmond, VA
 
Experience: Intermediate
Platform: TradeStation, thinkorswim
Trading: Crude CL, Gold GC, Copper HG
Posts: 5 since Jun 2017
Thanks Given: 34
Thanks Received: 2

Hello all,

Been trading for 18-20 months now. Started with options, but found I was all over the place and losing money. At the time, I bought into a few training sites that provided recommendations. Didn't kill me, and none were sheisters, but I didn't like any of them for my own trading plan and found 2 of the 4 were fairly reckless. Unless I know why to enter and exit, I am just not comfortable and found too much discretionary trading, and plainly, I don't know enough to do that.

I read some of Van Tharp's books and I decided to focus my attention on stronger technical analysis with more mechanical trading. I am making money now, but am such a newbie that I am both excited and naive in lots of matters - an dangerous combo! I recently read Kevin Davey's book on Algorithmic Trading and find that it is a really good fit for my personality and work style. I have developed 4 futures trading strategies with positive expectancy - one each with Crude, Gold, Copper and the S&P E-mini. I would like to build 10. I've made a few mistakes that have cost me, but I have a small positive balance on the year right now.

I currently trade with thinkorswim. I just started with TradeStation and I really want to figure it out. I am very impressed with the breadth of capabilities, and I know that there will be a long learning curve with getting all the automation set up so I am comfortable with it. That will probably be some of my first questions to the group.

I am in my 40's. I have an engineering background including a bit of computer programming, but have spent most of my professional career in the non-profit world working with people. I had to decide what to do with some spare money, which led me to think about trading.

My general trading goals are: 1) Create a system of trading that I could do trading to provide a full time salary. I have the cash resources to do it, but not the expertise. 2) Generate cash resources to provide financial gifts to non-profit organizations, especially ones that help prevent human trafficking. For example, in April, I made one financial giving commitment that is a bit outside of my ability to pay for it, unless I (minimally) succeed in trading. This is one small thing that has kept me on track with trading, even when I get discouraged. I hope to be successful enough to make a second commitment within the calendar year. I am resolved to do #2 even if I never get #1 accomplished.

I am looking forward to being part of this community and hope I can contribute something to it. I've already gained a lot just by lurking around. Thanks so much.

James W

Reply With Quote
  #7509 (permalink)
12tkram
Portsmouth, Hampshire, England
 
Posts: 1 since May 2017
Thanks Given: 0
Thanks Received: 1

Hi All, been trading a forex and CFD for few years now, still trying to find my feet and settle into my edge, mainly price action, S/R, ATR plays .. currently being taught by Tom Dante who trades the Bund so am looking to set up a stage 5 account and use bookmap. Have been looking at Market Profile and Order flow, early days yet, its a bit of a different setup than having a forex/CFD broker, so many costs associated. Really looking for the most economical way to get screen time and learn the art .. have seen some interesting threads already on the forum that hopefully will help .. I have a computer engineering backgroung and am currently learning python for data science and machine learning as a segway into quant analysis .. I have about 20 books I am slowly working my way through in my **not so** free time (jessie livermore, covel, douglas, schwager, elder) .. cheers ..

Reply With Quote
Thanked by:
  #7510 (permalink)
Robinson94
Paris / Īle de France / France
 
Posts: 20 since Aug 2016
Thanks Given: 2
Thanks Received: 38


Hi !
Since it look like its a part of the tradition to make a introduction post, here it is

I'm Robinson Labourdette, i started to get interresed in Trading around 2 years ago, i'm trading with the modern elliot wave theory, on the CL.

Even if i created my futures.io account around a year ago, i never posted anything, and, with the journaling event of June, in which i'm really interresed (that's a great initiative by the way, bravo !), about having some feedbacks on a journal (i have a private journal for over a year), being enabled to share and speak with others traders is great. And i was also going to retry a 50k combine around september, so if i do finish in the winners, i could do a bigger combine that what i was planning. And, even if i don't win, i would have win some experience, some great discussion, and maybe the want to keep having a public journal, its a 999999 risk/reward
Anyway, i'm just doing this quicly, but i'm going to have a bigger introduction, of me and the modern elliot wave theory if you are interresed by this subject, you could check out the journal : Mastering Modern Elliot Wave for Consitent Profits Journal; in 2 days.

Have a great day !!

Reply With Quote
Thanked by:




Last Updated on April 26, 2024


© 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