Landed two goatfish and a big surgeonfish today reddit.com/gallery/r4jgh5
πŸ‘︎ 25
πŸ’¬︎
πŸ‘€︎ u/huntermccarty
πŸ“…︎ Nov 29 2021
🚨︎ report
Leatherjacket (w/ Goatfish lurking in the background)
πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/OakMane
πŸ“…︎ Jan 01 2022
🚨︎ report
Goatfish being goatfish (Mulloidichthys flavolineatus)- Kona, Hawaii v.redd.it/i581myuketp71
πŸ‘︎ 313
πŸ’¬︎
πŸ‘€︎ u/dugongfrommacon
πŸ“…︎ Sep 26 2021
🚨︎ report
[Homemade] steamed goatfish
πŸ‘︎ 37
πŸ’¬︎
πŸ‘€︎ u/withmanda
πŸ“…︎ Jul 13 2021
🚨︎ report
Decided to draw the missing goatfish Enrico who's probs dead
πŸ‘︎ 28
πŸ’¬︎
πŸ‘€︎ u/Tatsuki_Hermz
πŸ“…︎ Jul 02 2021
🚨︎ report
Got a good name for this flying goatfish? reddit.com/gallery/m8pbp0
πŸ‘︎ 288
πŸ’¬︎
πŸ‘€︎ u/rastroboy
πŸ“…︎ Mar 21 2021
🚨︎ report
Red Snapper hunting Goatfish gfycat.com/cleverhatefuld…
πŸ‘︎ 299
πŸ’¬︎
πŸ‘€︎ u/Pardusco
πŸ“…︎ May 26 2021
🚨︎ report
Us Capricorns are goatfish, right? (art by me)
πŸ‘︎ 51
πŸ’¬︎
πŸ‘€︎ u/spagooter
πŸ“…︎ Feb 27 2021
🚨︎ report
Goatfish! biggest fish caught on my vacation. reddit.com/gallery/oam1pe
πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/ariferrari69
πŸ“…︎ Jun 30 2021
🚨︎ report
A beginner's attempt at Robert Lang's Goatfish, KNL Dragon and Lizard imgur.com/KH7w1BI
πŸ‘︎ 12
πŸ’¬︎
πŸ‘€︎ u/Venzael
πŸ“…︎ Apr 12 2021
🚨︎ report
2015 Tokelau Capricorn β€œGoatfish” reddit.com/gallery/nwai1w
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/Jdonavan
πŸ“…︎ Jun 10 2021
🚨︎ report
I'd rather be fishing. Moana Kali - Blue Goatfish
πŸ‘︎ 113
πŸ’¬︎
πŸ‘€︎ u/RisingTideHI
πŸ“…︎ Mar 02 2020
🚨︎ report
[ANIMAL] Goatfish / Red Mullet
πŸ‘︎ 30
πŸ’¬︎
πŸ‘€︎ u/Raptoreye14
πŸ“…︎ Apr 01 2021
🚨︎ report
Teamwork makes the dream work. The Many-bar Goatfish hunting with the Day Octopus v.redd.it/axzzzrhrlpf51
πŸ‘︎ 213
πŸ’¬︎
πŸ‘€︎ u/seligmanp
πŸ“…︎ Aug 08 2020
🚨︎ report
The dash-and-dot goatfish using its barbels to find food v.redd.it/3p9ak6iandn41
πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/acid-hologram
πŸ“…︎ Mar 18 2020
🚨︎ report
[RD/KP03] Old Man Goatfish
πŸ‘︎ 53
πŸ’¬︎
πŸ‘€︎ u/Czalavis
πŸ“…︎ Oct 23 2020
🚨︎ report
What is the spotted fish here with kind of bulgy eyes hanging out with the goatfish? I tried but couldn’t find it in my fish book. Location is Kaneohe Bay, Oahu, Hawai’i v.redd.it/ghf05eu5gpv51
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/star3473
πŸ“…︎ Oct 27 2020
🚨︎ report
GoatFish a bot framework for leveraged trading

So I wanted to get into algo-trading last year, more specifically in crypto, but I didn't want to simply spot buy and sell crypto assets, imo those markets lack liquidity, and liquidity is king

So I decided to build a bot for leveraged trading of Bitcoin. Long story short, I saw a gap in the market: no one had built a bot framework for leveraged trading in crypto.

So thats just what Ive been doing in my free time over the past year, and since it's almost done. I think now is the time for fellow enthusiast to take a look and rip it apart.

A bit of context, on what the tool does and is:

Background
GoatFish is meant to be an infrastructure that allows you to dynamically run custom code in a vacuum (a docker container). while taking care of all the other elements of algotrading for you. All the streaming information from the exchange, all the order setting, backtesting, paperTrading.... is carried out an an application layer and the user doesn't have to worry about it.

Exchanges
Currently it only supports Bitmex, but it is structured to be able to add any an all exchanges a user may want to add with very little effort(as long as its leveraged trading).

Strategies
All you need to deploy a strategy is:

  • A bot name
  • A unique set of API keys
  • A strategy, which can come in the form of a single file or several folders
  • A preferred exchange
  • A preferred timeframe [defaults to all timeframes if not specified]

This information will then be used to keep track of all your positions all of your orders and automatically connect the strategy to the chosen exchange, and submit/cancel/ammend orders when necessary.

Additionally the bot functionality allows you to dynamically switch between actions. A bot can just as easily:

  1. livetrade
  2. papertrade
  3. backtest
  4. stop

Analytics
The application provides real time analytics and scoring your strategies against each other.

Progress
As it stand the application is a series of dockerised endpoints that communicate through kafka. They each all work together and individually to deploy and run strategies. How ever usage at the moment is
limited o how knowledgable you are of the endpoints and their use, so I will be starting the development of a CLI with accompanying documentation to make it more accessible.

Im also very much aware the code is not perfect, but it does fairly well, a test strategy has been running a trade/min for the last 22 days wit

... keep reading on reddit ➑

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/Lucasxhy
πŸ“…︎ Jul 01 2020
🚨︎ report
Blursed Capricorn Goatfish
πŸ‘︎ 30
πŸ’¬︎
πŸ‘€︎ u/spagooter
πŸ“…︎ Feb 27 2021
🚨︎ report
Took this photo of a Yellowfin Goatfish digging for food this past summer. They are pretty neat creatures and change colour based on their activity. - If you like this I have plenty more on my Instagram: GavinKrohm
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/GavinKrohm
πŸ“…︎ Mar 31 2020
🚨︎ report
I made an easy-to-use, schemaless layer over SQLite: Goatfish

I love SQLite for small apps and things with not much concurrency, but I didn't want to use a heavy ORM and have to create models. For some small projects, you just want to store some dicts with fast retrieval.

For that, I made Goatfish. It's a small schemaless layer over SQLite, where you basically create a class of your objects and they get .save() .find() and other such methods.

The library also supports indexing on arbitrary keys, for fast lookups.

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Poromenos
πŸ“…︎ Nov 11 2020
🚨︎ report
πŸ”₯ Shoal of Goatfish gfycat.com/afraidgrouchyg…
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/thegoldconqueror
πŸ“…︎ Aug 02 2020
🚨︎ report
Rather be fishing...Moano aka Many Bar Goatfish
πŸ‘︎ 21
πŸ’¬︎
πŸ‘€︎ u/RisingTideHI
πŸ“…︎ Feb 03 2020
🚨︎ report
Parupeneus williamsi, a new species of goatfish from the Marquesas islands of French Polynesia
πŸ‘︎ 38
πŸ’¬︎
πŸ‘€︎ u/CascadianLiberty
πŸ“…︎ May 14 2020
🚨︎ report
Goatfish use a pair of long chemosensory barbels to search for prey in the sediment gfycat.com/faroffsecondha…
πŸ‘︎ 499
πŸ’¬︎
πŸ‘€︎ u/Pardusco
πŸ“…︎ Jan 25 2020
🚨︎ report
Introducing: The Fairfield Goatfish [sports-team-inspired Capricorn emblem!] [OC]
πŸ‘︎ 81
πŸ’¬︎
πŸ‘€︎ u/ughzubat
πŸ“…︎ Aug 04 2018
🚨︎ report
This is a school of Goatfish from above. Took this on a dive in Hawaii this summer, there were schools like this everywhere - If you like this I have plenty more on my Instagram: GavinKrohm
πŸ‘︎ 29
πŸ’¬︎
πŸ‘€︎ u/GavinKrohm
πŸ“…︎ Apr 04 2020
🚨︎ report
Basketball: Team Goatfish Vs Bone Bros tratserenoyreve.tumblr.co…
πŸ‘︎ 60
πŸ’¬︎
πŸ‘€︎ u/Reebsen
πŸ“…︎ Feb 11 2016
🚨︎ report
Got this shot of a Yellowfin Goatfish digging for food in Hawaii this past summer. These are awesome little creatures that live up to 500m deep and change colours based on their activity. - If you like this I have plenty more on my Instagram: GavinKrohm
πŸ‘︎ 140
πŸ’¬︎
πŸ‘€︎ u/GavinKrohm
πŸ“…︎ Mar 31 2020
🚨︎ report
Not a monster but still stoked with my first ever Moana Kali, or Blue Goatfish!
πŸ‘︎ 169
πŸ’¬︎
πŸ‘€︎ u/frickindanielj
πŸ“…︎ Sep 05 2018
🚨︎ report
Upeneus floros, a new species of goatfish from South Africa and Mozambique
πŸ‘︎ 47
πŸ’¬︎
πŸ‘€︎ u/CascadianLiberty
πŸ“…︎ Aug 21 2020
🚨︎ report
Cone Snail swallows a Goatfish gfycat.com/astonishingthr…
πŸ‘︎ 69
πŸ’¬︎
πŸ‘€︎ u/Pardusco
πŸ“…︎ Dec 21 2019
🚨︎ report
This is a school of Goatfish from above. Took this on a dive in Hawaii this summer. There were schools like this everywhere, made for some very cool diving - If you like this I have plenty more on my Instagram: GavinKrohm
πŸ‘︎ 48
πŸ’¬︎
πŸ‘€︎ u/GavinKrohm
πŸ“…︎ Apr 04 2020
🚨︎ report
Hit a nice hole of ta'ape/to'au (invasive bluestripe/blacktail snapper) and a moano (goatfish). Big Island, Hawaii
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/jpeace808
πŸ“…︎ Jan 04 2020
🚨︎ report
If you could have a animal that was half of a goat and half of a fish it could be a goatfish or a fishgoat an it could swim an bark but not could fly

Probably it

πŸ‘︎ 20
πŸ’¬︎
πŸ‘€︎ u/i_boof_juul_pods
πŸ“…︎ Mar 06 2019
🚨︎ report
This is a school of Goatfish from above. Took this on a dive in Hawaii this summer, there were schools like this everywhere - If you like this I have plenty more on my Instagram: GavinKrohm
πŸ‘︎ 41
πŸ’¬︎
πŸ‘€︎ u/GavinKrohm
πŸ“…︎ Apr 04 2020
🚨︎ report
Goatfish go baa

https://preview.redd.it/v3pqltbzgde11.png?width=960&format=png&auto=webp&s=789bb495e89dce5ad9996e5d59d86b41bc0b460b

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/FridgeMacaroni
πŸ“…︎ Aug 06 2018
🚨︎ report
This is a school of Goatfish from above. Took this on a dive in Hawaii this summer, there were schools like this everywhere - If you like this I have plenty more on my Instagram: GavinKrohm
πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/GavinKrohm
πŸ“…︎ Apr 04 2020
🚨︎ report
Goldbar goatfish
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/Slopadope
πŸ“…︎ Jun 15 2018
🚨︎ report
A dirty goatfish getting a clean at a cleaning station. Raja Ampat, Indonesia. [Canon 5D m3] instagram.com/p/Bfm_BRChn…
πŸ‘︎ 9
πŸ’¬︎
πŸ‘€︎ u/fruchle
πŸ“…︎ Feb 25 2018
🚨︎ report
Spinosaurus Mega-Exhibit (with goatfish)
πŸ‘︎ 109
πŸ’¬︎
πŸ‘€︎ u/Lord_Floyd
πŸ“…︎ Aug 07 2018
🚨︎ report
GoatFish a bot framework for leveraged crypto trading

So I wanted to get into algo-trading last year, more specifically in crypto, but I didn't want to simply spot buy and sell crypto assets, imo those markets lack liquidity, and liquidity is king

So I decided to build a bot for leveraged trading of Bitcoin. Long story short, I saw a gap in the market: no one had built a bot framework for leveraged trading in crypto.

So thats just what Ive been doing in my free time over the past year, and since it's almost done. I think now is the time for fellow enthusiast to take a look and rip it apart.

A bit of context, on what the tool does and is:

Background
GoatFish is meant to be an infrastructure that allows you to dynamically run custom code in a vacuum (a docker container). while taking care of all the other elements of algotrading for you. All the streaming information from the exchange, all the order setting, backtesting, paperTrading.... is carried out an an application layer and the user doesn't have to worry about it.

Exchanges
Currently it only supports Bitmex, but it is structured to be able to add any an all exchanges a user may want to add with very little effort(as long as its leveraged trading).

Strategies
All you need to deploy a strategy is:

  • A bot name
  • A unique set of API keys
  • A strategy, which can come in the form of a single file or several folders
  • A preferred exchange
  • A preferred timeframe [defaults to all timeframes if not specified]

This information will then be used to keep track of all your positions all of your orders and automatically connect the strategy to the chosen exchange, and submit/cancel/ammend orders when necessary.

Additionally the bot functionality allows you to dynamically switch between actions. A bot can just as easily:

  1. livetrade
  2. papertrade
  3. backtest
  4. stop

Analytics
The application provides real time analytics and scoring your strategies against each other.

Progress
As it stand the application is a series of dockerised endpoints that communicate through kafka. They each all work together and individually to deploy and run strategies. How ever usage at the moment is
limited o how knowledgable you are of the endpoints and their use, so I will be starting the development of a CLI with accompanying documentation to make it more accessible.

Im also very much aware the code is not perfect, but it does fairly well, a test strategy has been running a trade/min for the last 22 days wit

... keep reading on reddit ➑

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/Lucasxhy
πŸ“…︎ Jul 01 2020
🚨︎ report
GoatFish - A bot framework for leveraged crypto trading

So I wanted to get into algo-trading last year, more specifically in crypto, but I didn't want to simply spot buy and sell crypto assets, imo those markets lack liquidity, and liquidity is king

So I decided to build a bot for leveraged trading of Bitcoin. Long story short, I saw a gap in the market: no one had built a bot framework for leveraged trading in crypto.

So thats just what Ive been doing in my free time over the past year, and since it's almost done. I think now is the time for fellow enthusiast to take a look and rip it apart.

A bit of context, on what the tool does and is:

Background
GoatFish is meant to be an infrastructure that allows you to dynamically run custom code in a vacuum (a docker container). while taking care of all the other elements of algotrading for you. All the streaming information from the exchange, all the order setting, backtesting, paperTrading.... is carried out an an application layer and the user doesn't have to worry about it.

Exchanges
Currently it only supports Bitmex, but it is structured to be able to add any an all exchanges a user may want to add with very little effort(as long as its leveraged trading).

Strategies
All you need to deploy a strategy is:

  • A bot name
  • A unique set of API keys
  • A strategy, which can come in the form of a single file or several folders
  • A preferred exchange
  • A preferred timeframe [defaults to all timeframes if not specified]

This information will then be used to keep track of all your positions all of your orders and automatically connect the strategy to the chosen exchange, and submit/cancel/ammend orders when necessary.

Additionally the bot functionality allows you to dynamically switch between actions. A bot can just as easily:

  1. livetrade
  2. papertrade
  3. backtest
  4. stop

Analytics
The application provides real time analytics and scoring your strategies against each other.

Progress
As it stand the application is a series of dockerised endpoints that communicate through kafka. They each all work together and individually to deploy and run strategies. How ever usage at the moment is
limited o how knowledgable you are of the endpoints and their use, so I will be starting the development of a CLI with accompanying documentation to make it more accessible.

Im also very much aware the code is not perfect, but it does fairly well, a test strategy has been running a trade/min for the last 22 days wit

... keep reading on reddit ➑

πŸ‘︎ 16
πŸ’¬︎
πŸ‘€︎ u/Lucasxhy
πŸ“…︎ Jul 01 2020
🚨︎ report
GoatFish a bot framework for leveraged trading

So I wanted to get into algo-trading last year, more specifically in crypto, but I didn't want to simply spot buy and sell crypto assets, imo those markets lack liquidity, and liquidity is king

So I decided to build a bot for leveraged trading of Bitcoin. Long story short, I saw a gap in the market: no one had built a bot framework for leveraged trading in crypto.

So thats just what Ive been doing in my free time over the past year, and since it's almost done. I think now is the time for fellow enthusiast to take a look and rip it apart.

A bit of context, on what the tool does and is:

Background
GoatFish is meant to be an infrastructure that allows you to dynamically run custom code in a vacuum (a docker container). while taking care of all the other elements of algotrading for you. All the streaming information from the exchange, all the order setting, backtesting, paperTrading.... is carried out an an application layer and the user doesn't have to worry about it.

Exchanges
Currently it only supports Bitmex, but it is structured to be able to add any an all exchanges a user may want to add with very little effort(as long as its leveraged trading).

Strategies
All you need to deploy a strategy is:

  • A bot name
  • A unique set of API keys
  • A strategy, which can come in the form of a single file or several folders
  • A preferred exchange
  • A preferred timeframe [defaults to all timeframes if not specified]

This information will then be used to keep track of all your positions all of your orders and automatically connect the strategy to the chosen exchange, and submit/cancel/ammend orders when necessary.

Additionally the bot functionality allows you to dynamically switch between actions. A bot can just as easily:

  1. livetrade
  2. papertrade
  3. backtest
  4. stop

Analytics
The application provides real time analytics and scoring your strategies against each other.

Progress
As it stand the application is a series of dockerised endpoints that communicate through kafka. They each all work together and individually to deploy and run strategies. How ever usage at the moment is
limited o how knowledgable you are of the endpoints and their use, so I will be starting the development of a CLI with accompanying documentation to make it more accessible.

Im also very much aware the code is not perfect, but it does fairly well, a test strategy has been running a trade/min for the last 22 days with out any downtime.
That being sai

... keep reading on reddit ➑

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/Lucasxhy
πŸ“…︎ Jul 20 2020
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.