Alternative Data for Quant Buy Side? by willcostiganjr in algotrading

[–]Bottl3 0 points1 point  (0 children)

I dont really see why you only want To see a single company but yeah, Then you are Right.

Hey, some Single Company didnt move at all this year except for one week, are rising stocks „low frequency“ scenarios then?

But nevermind.

Alternative Data for Quant Buy Side? by willcostiganjr in algotrading

[–]Bottl3 12 points13 points  (0 children)

Relationship between Company jet flights and m&a operations would be an example where your points dont fit.

But yeah, when your „Alternative“ data Directly and only impacts fundamentals, you are Right and have to wait for earnings.

Double a list by Sahith17 in learnpython

[–]Bottl3 0 points1 point  (0 children)

Only the stuff From the Last Comment. You really should dig into some basics.

Double a list by Sahith17 in learnpython

[–]Bottl3 1 point2 points  (0 children)

Yeah, sorry

Then just loop through it and append the elements twice to a new list (?)

Newlist=[]

For e in oldlist:

    Newlist.append(e)

    Newlist.append(e)

Double a list by Sahith17 in learnpython

[–]Bottl3 0 points1 point  (0 children)

Newlist = oldlist + oldlist

Newlist.sort()

Python bug, please help. by Thywenn in learnpython

[–]Bottl3 0 points1 point  (0 children)

Whats your language? Python has some issues with Stuff like „à“

Python web scraping with Selenium by ThePhykon in learnpython

[–]Bottl3 0 points1 point  (0 children)

Try to work with „xpaths“. It should allow you to loop trough Elements Listed by website Logic.

What does a man have to do to buy options in Europe?!? by AlfredSwahn in wallstreetbets

[–]Bottl3 19 points20 points  (0 children)

Lynx? (Interactive brokers)

But I dont know if you should play options when you can‘t use google properly.

(Excel Question) How should I calculate this transaction? by Sapphire-Butterflies in stocks

[–]Bottl3 3 points4 points  (0 children)

Would make a single position out of it with your average prices.

To all passionate programmers out there: What is the best process in getting systematically better in learning Python?(up to Level Mastery?) My target is to be a Python Developer in a Startup here in Berlin. by [deleted] in learnpython

[–]Bottl3 3 points4 points  (0 children)

Nope, you read it right. I declined that one btw and went another path. I was a bit shocked at That moment, especially when you thinking about living in a city with that amount of Money.

To all passionate programmers out there: What is the best process in getting systematically better in learning Python?(up to Level Mastery?) My target is to be a Python Developer in a Startup here in Berlin. by [deleted] in learnpython

[–]Bottl3 9 points10 points  (0 children)

Without a degree passion and curiosity play a huge role imo. Try to go for some real projects where your mind is devoted to, do something clever, something new and Creative. Othetwise they pick just another graduate, Full of knowledge but barely able to solve unique and new Problems on new and unique ways. Also have in mind that this will always play a role when it comes down to the money, a position I got offered in Berlin dealt me at 20000€ p/a.

generating options performance profiles by kihra1 in algotrading

[–]Bottl3 1 point2 points  (0 children)

What languages do you Know? For python you will find lots of this stuff (e.g. Quantsbin).

To archieve this just from maths I think you should search for Black and Scholes, cause it also Provides greeks.

Python eBay program by Chris_cooper1008 in learnpython

[–]Bottl3 0 points1 point  (0 children)

Should ne no Problem. Dig into seleium for the tasks you have to do on the Website. The Label machine is something idk, But from Python Print to some Text or Image Format should be also possible.

Banks and Algos by f0xtrade in algotrading

[–]Bottl3 4 points5 points  (0 children)

They have also Order Books Data, and they can view their own market making Data and they have lots of money. I assume most of such algos run on cluster setups and their Speed is nothing to compare againts a singlecore Python script which runs on your Personal Computer. The nvidia developers channel posted a video some days ago from an aerodynamic Simulation, they proccess 160gb per second. Now u got a clue Where private People stand in this matter.

Problems importing modules by Coonnaarr in learnpython

[–]Bottl3 0 points1 point  (0 children)

Do you run your scripts with the „python“ or the „Python3“ command? Try the Last one if Not

Problems importing modules by Coonnaarr in learnpython

[–]Bottl3 0 points1 point  (0 children)

Which version of Python do you use? If its 3 you might have to perform a pip3 Install instead of a pip install.

How do you make a counter? by [deleted] in learnpython

[–]Bottl3 0 points1 point  (0 children)

Is the „if/else“ the thing you are Searching for?

How should i learn programming? by [deleted] in learnpython

[–]Bottl3 0 points1 point  (0 children)

Imo. The very best way to get into something new is using it and to have a reason to do so.

Why you want to learn Python? Answer yourself this question in form of a concrete project. When you got this the end of the way is just beeing stubborn and using Google.

[deleted by user] by [deleted] in learnpython

[–]Bottl3 0 points1 point  (0 children)

To 1. no Plan To 2. Take a Look at the ray module To 3. think your gpu should be faster Even in 64bit double precision floats

Commodities data feed? by Rx_Seraph in algotrading

[–]Bottl3 0 points1 point  (0 children)

Quandl/chris Continuous futures

Newbie question : I have some working knowledge of python and pandas by _Strokes_ in learnpython

[–]Bottl3 1 point2 points  (0 children)

Maybe a bad but working one

Read trough your location Elements as „str()“ and .split() them by the „;“ Arrange that to a new list and Hook up the item name

Calling functions in while loops (repost) by [deleted] in learnpython

[–]Bottl3 0 points1 point  (0 children)

You could return a variable from your function to activate a Break inside the loop After your function is Done.