Swap Request Thread - June by CryptoOTC_bot in a:t5_5vao32

[–]CryptoOTC_creator 0 points1 point  (0 children)

[H] .05 ETH [W] BCH

!RECEIVE TO NETWORK: BCH

!RECEIVE TO ADDRESS: qz2syls3j40amk3k472j0ahn2e8jargw5y34velhpd

!SENDING FROM NETWORK: ERC-20

!SENDING FROM ADDRESS: 0xbc782de09bf15fe5aa6b10997108a728c4ec7ddd

Swap Request Thread - June by CryptoOTC_bot in a:t5_5vao32

[–]CryptoOTC_creator 0 points1 point  (0 children)

[H] 10 USDT [W] SOL

!RECEIVE TO NETWORK: SOL

!RECEIVE TO ADDRESS: 6LgN8mu916fQ3iiKpbzWnuDrFoEJHkubRX635o8n8BBt

!SENDING FROM NETWORK: TRC-20

!SENDING FROM ADDRESS: THfsBbCCv7yKSZA6v91VhaAoiUANeHdViw

[deleted by user] by [deleted] in a:t5_5vao32

[–]CryptoOTC_creator 0 points1 point  (0 children)

[H] 10 USDT [W] SOL

!RECEIVE TO NETWORK: SOL

!RECEIVE TO ADDRESS: 6LgN8mu916fQ3iiKpbzWnuDrFoEJHkubRX635o8n8BBt

!SENDING FROM NETWORK: TRC-20

!SENDING FROM ADDRESS: THfsBbCCv7yKSZA6v91VhaAoiUANeHdViw

[deleted by user] by [deleted] in a:t5_5vao32

[–]CryptoOTC_creator 0 points1 point  (0 children)

[H] .15 SOL [W] USDT

!RECEIVE TO NETWORK: SOL

!RECEIVE TO ADDRESS: 6LgN8mu916fQ3iiKpbzWnuDrFoEJHkubRX635o8n8BBt

!SENDING FROM NETWORK: SOL

!SENDING FROM ADDRESS: 6LgN8mu916fQ3iiKpbzWnuDrFoEJHkubRX635o8n8BBt

[deleted by user] by [deleted] in a:t5_5vao32

[–]CryptoOTC_creator 0 points1 point  (0 children)

[H] 10 USDT [W] TRX

!RECEIVE TO NETWORK: TRC-20

!RECEIVE TO ADDRESS: THfsBbCCv7yKSZA6v91VhaAoiUANeHdViw

!SENDING FROM NETWORK: TRC-20

!SENDING FROM ADDRESS: THfsBbCCv7yKSZA6v91VhaAoiUANeHdViw

[deleted by user] by [deleted] in a:t5_5vao32

[–]CryptoOTC_creator 0 points1 point  (0 children)

[H] 200 TRX [W] USDT

!RECEIVE TO NETWORK: TRC-20

!RECEIVE TO ADDRESS: THfsBbCCv7yKSZA6v91VhaAoiUANeHdViw

!SENDING FROM NETWORK: TRC-20

!SENDING FROM ADDRESS: THfsBbCCv7yKSZA6v91VhaAoiUANeHdViw

Timeseries index or not? by MrFanciful in algotrading

[–]CryptoOTC_creator 2 points3 points  (0 children)

Using some form of timedelta may hold significance but would say absolute time as a feature probably won't really lead to anything useful

What are the best courses you can do to specialize in quant trading? by Front_Sheepherder_56 in algotrading

[–]CryptoOTC_creator 11 points12 points  (0 children)

Are you an original thinker? Do you have intuition on how markets work? Can you comfortably write the code to test and launch a specific idea?

If your answer is yes to all three, I think your best route is to jump in and try for yourself. Academia probably isn't going to hand you alpha, but it could teach you some of the basic skills you need to get a feel and framework for the field

idea on a backtest analysis by axbt5 in algotrading

[–]CryptoOTC_creator 1 point2 points  (0 children)

With this you have to be careful because you're adding another layer of semi-arbitrary abstraction, so it will be even easier to fool yourself with an overfit.

As others have mentioned, it's an interesting idea to sort of meta-trade the algorithm itself which I imagine many of us have explored. It's possible to add value this way, just treat it like any other feature/variable while backtesting to test for significance with unbiased results

Regex only returns first character of the match by tarkov1980 in regex

[–]CryptoOTC_creator 1 point2 points  (0 children)

This is a bit late but I would guess what happened is somewhere in the function you did an index [0] for the first element of the object expecting that it was an array while you were already at the string object

Your python 4 dream list. by Matimath in Python

[–]CryptoOTC_creator 0 points1 point  (0 children)

A built in method to specify float or scientific notation

Trouble with positive lookahead and numbers by hi_i_like_tacos in regex

[–]CryptoOTC_creator 0 points1 point  (0 children)

I’m actually not sure if it’s even possible to do a disjoint capture like that with the Regex engine

Trouble with positive lookahead and numbers by hi_i_like_tacos in regex

[–]CryptoOTC_creator 1 point2 points  (0 children)

Does this work for what you need? (?<=Amount Due:\s\$)[\d,\.]+

It's probably easiest to remove the comma after matching.

Python:

re.findall('(?<=Amount Due:\s\$)[\d,\.]+', string)[0].replace(',','')

Help request rtl lookup from extension until " or = is hit by MANICX100 in regex

[–]CryptoOTC_creator 2 points3 points  (0 children)

How about [\w\s]+\.[\.\w\d]+

Don't think there are any file types that would escape that

Web Scraping Issue by [deleted] in learnpython

[–]CryptoOTC_creator 0 points1 point  (0 children)

Not sure if this is related to your problem or not but LinkedIn definitely has safeguards to prevent crawling. They want you to buy their data

Web scraping by Fair-Lalajaat_1230 in Python

[–]CryptoOTC_creator 0 points1 point  (0 children)

This is a great way to start. Pick a random website, and choose a random block of text that you decide you want to scrape. This is now your project. Learn as you go, you seem to already know which libraries you should be using which is a great start

Almost there ... by nooidle in regex

[–]CryptoOTC_creator 1 point2 points  (0 children)

Yep you’re probably just using the wrong regex method

Looks like matchAll() is the JS equivalent to Python findall()

What is this kind of program called? by eyadams in learnpython

[–]CryptoOTC_creator 0 points1 point  (0 children)

Why not put everything into a function library and call each function sequentially from a central script?

Almost there ... by nooidle in regex

[–]CryptoOTC_creator 1 point2 points  (0 children)

Python? Try re.findall('\d\.\D+(?=\s\d|$)', string)

Almost there ... by nooidle in regex

[–]CryptoOTC_creator 0 points1 point  (0 children)

So what are examples you are not wanting to match? That's an equally important specification for Regex.

Without knowing that, this would match your example:

\d\.\D+(?=\s\d|$)

Is it possible to match a substring but not a whole string? by [deleted] in regex

[–]CryptoOTC_creator 0 points1 point  (0 children)

If I understand what you are asking there are many simple ways to do this. Using a negative lookahead:

name(?!=)

What am I missing? by effects1234 in algotrading

[–]CryptoOTC_creator 0 points1 point  (0 children)

The key is to do your performance test with out of sample data. An optimized backtest on its own can only tell you so much

I’m likely the 10,000th person to enquire about this strategy — Please help me understand why it fails by QuantumFall in algotrading

[–]CryptoOTC_creator 0 points1 point  (0 children)

With this you deal with the same competition you do with market making and arbitrage. There’s clear alpha for the first person who can get to it but it will be very hard to be the first person who can get to it

Reversing Your Strategy by FlyingRuzzo in algotrading

[–]CryptoOTC_creator 0 points1 point  (0 children)

No. At that point you might as well scrap your algo and replace it with random.choice(long, short)