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,250,079 views
    2. thumb_up 12,017 thanks given
    3. group 6,320 followers
    1. forum 10,646 posts
    2. attach_file 94 attachments




 
Search this Thread

Introduce yourself here!

  #10111 (permalink)
 RPW69FIO 
Los Angeles CA USA
 
Experience: Intermediate
Platform: multicharts
Trading: futures
Posts: 1 since Dec 2021
Thanks Given: 0
Thanks Received: 1

Hello traders! I have been lurking for a while, but decided finally to create an account.
Presently I am studying NASDAQ100 action.

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Quantum physics & Trading dynamics
The Elite Circle
REcommedations for programming help
Sierra Chart
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
ZombieSqueeze
Platforms and Indicators
 
  #10112 (permalink)
 Roland71 
Helsingborg, Sweden
 
Experience: Intermediate
Platform: Tradestation, MultiCharts
Broker: Tradestation,Interactive Brokers
Trading: Futures
Posts: 1 since Dec 2021
Thanks Given: 0
Thanks Received: 1

Hi!
I have struggled with trading for 7 years and have tested everything (it feels like). I never gave up though. At last I found my style, algorithmic trading. I am here to learn more about strategy and other coding and hopefuly give som help too. I use Easy Language and trade futures only. Thanks for a warm welcome!!

Reply With Quote
Thanked by:
  #10113 (permalink)
roscopt1223
Dayton, ohio
 
Posts: 1 since Dec 2021
Thanks Given: 0
Thanks Received: 1


Hello, I've bounced back and forth between equities and futures. I've taken an 8 mo th break from all trading and trying to get back into it. I really like using Bookmap and have some experience trying to use SpotGamma so I felt like I was getting some of the best information for trading and stayed on futures before taking a break. Just trying to relearn things and maybe actually become profitable and get rid of my entire ego and just learn. Hoping to learn from a ton of well experienced ppl on here and make trading fun again.

Sent using the NexusFi mobile app

Reply With Quote
Thanked by:
  #10114 (permalink)
 alesiosc 
Manchester, UK
 
Experience: Intermediate
Platform: Ninja Trader 8
Trading: Futures
Posts: 21 since Dec 2021
Thanks Given: 4
Thanks Received: 10

hi all. new to futures. looking forward to whats in store

Reply With Quote
Thanked by:
  #10115 (permalink)
wolfask
Tangier, MOROCCO
 
Posts: 1 since Dec 2021
Thanks Given: 1
Thanks Received: 1

Wolfask

Glad to join this fourm, hopefully this fourm will be successful

Reply With Quote
Thanked by:
  #10116 (permalink)
CheddarBob
Toronto, Canada
 
Posts: 1 since Dec 2021
Thanks Given: 0
Thanks Received: 1

glad to be here! Also a Mike. Toronto resident. Rookie investor. need some help! here to learn

Reply With Quote
Thanked by:
  #10117 (permalink)
TheFish
Rockville MD USA
 
Posts: 5 since Dec 2021
Thanks Given: 0
Thanks Received: 3

Hi I'm Fish,

I too am tired of losing money. But, I am passionate about Wyckoff and Weis Wave and that's how I found this group. I have watched the David Weis webinar countless times and am currently reading Trades about to happen (again).

A little about me, I have been trading since 2014 started swing trading crypto then lost my ass in 2017 and stopped trading. Fast forward to 2020 and the pandemic, hooked up with a trading group and got really serious. Started with swinging Penny's, to day trading small caps, and then landing in the world of Options. This is where I have a big love hate relationship.

So if there are any other Wyckoff traders out there I would love ve to talk to more like minded traders.

Love,
Fish

Reply With Quote
Thanked by:
  #10118 (permalink)
aspiringmiliner
Swattle, WA
 
Posts: 6 since Dec 2021
Thanks Given: 0
Thanks Received: 1

Hi... I'm a new member. Hoping to learn and share.

Sent using the NexusFi mobile app

Reply With Quote
Thanked by:
  #10119 (permalink)
QUIKTDR111
MT KISCO NY
 
Posts: 1 since Oct 2021
Thanks Given: 0
Thanks Received: 1

This looks interesting! I think that it can be utilized and improved for short-term movers. Good Luck All!

# FX_Fish Upper
#
# Free for use. Header credits must be included when any form of the code included in this package is used.
# User assumes all risk. Author not responsible for errors or use of tool.
# Join us at: *********************kD3pKE2CQd
#
# Barbaros

declare upper;

input period = 10;
input price = hl2; # 0 or other = (H+L)/2
# 1 = Open
# 2 = Close
# 3 = High
# 4 = Low
# 5 = (H+L+C)/3
# 6 = (O+C+H+L)/4
# 7 = (O+C)/2
input Mode_Fast= no;
input Signals= no;

def Threshold = 1.2;
def MaxH = Highest(data = HIGH, length = period); #High[Highest(NULL,0,MODE_HIGH,period,i)];
def MinL = Lowest(data = LOW, length = period); #Low[Lowest(NULL,0,MODE_LOW,period,i)];
def _price = price;


def Value = Min(Max((0.33*2*((_price-MinL)/(MaxH-MinL)-0.5) + 0.67*Value[1]),-0.999),0.999);
def Fish = 0.5 * log((1+Value)/(1-Value))+0.5*Fish[1];

plot Buy = (Fish>Threshold) and (Fish<Fish[1]) and (Fish[1]>=Fish[2]);
Buy.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
Buy.AssignValueColor(if Fish >= 0 then Color.GREEN else Color.WHITE);

plot Sell = (Fish<Threshold) and (Fish>Fish[1]) and (Fish[1]<=Fish[2]);
Sell.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
Sell.AssignValueColor(if Fish < 0 then Color.RED else Color.WHITE);

Reply With Quote
Thanked by:
  #10120 (permalink)
romork
ISTANBUL TURKEY
 
Posts: 5 since Dec 2021
Thanks Given: 3
Thanks Received: 4


Hi guys,
I have started to trade since pandemic, and still trying to design a system.
I am trying to backtest some strategies by python, I read some books, watched a lot of videos and still learning. I have a lot of questions, so I hope this place will be somewhere people will help me.
Nice to be a member of this community.
Thanks.

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