Skip to content

Instantly share code, notes, and snippets.

View vmule's full-sized avatar
🎯
Focusing

Vito Mulè vmule

🎯
Focusing
  • California, United States
  • 09:27 (UTC -07:00)
  • LinkedIn in/vitomule
View GitHub Profile
@vmule
vmule / v04-options-strategy-analysis.md
Created April 24, 2026 03:21 — forked from dpark2025/v04-options-strategy-analysis.md
v0.4 Systematic Options Premium Selling — Strategy Analysis & Improvement Recommendations (verified)

v0.4 Options Premium Selling — Strategy Analysis & Improvement Recommendations

Date: 2026-04-23 Analyst: Nadia Okonkwo Subject: Systematic index options premium selling strategy (v0.4) Context: Automated SPX credit spread premium selling system, 45-DTE, targeting monthly cash flow. Phase 1 (SPY covered calls on Alpaca) is code-complete. Phase 2 (SPX credit spreads on IBKR) is in progress.


Current Strategy Summary

@vmule
vmule / v04-options-strategy-analysis.md
Created April 24, 2026 03:09
v0.4 Systematic Options Premium Selling — Strategy Analysis & Improvement Recommendations

v0.4 Options Premium Selling — Strategy Analysis & Improvement Recommendations

Date: 2026-04-23 Analyst: Nadia Okonkwo Subject: Systematic index options premium selling strategy (v0.4) Context: Automated SPX credit spread premium selling system, 45-DTE, targeting monthly cash flow. Phase 1 (SPY covered calls on Alpaca) is code-complete. Phase 2 (SPX credit spreads on IBKR) is in progress.


Current Strategy Summary

require 'formula'
class Ldc2 < Formula
version '20130608'
url 'https://bitbucket.org/clems71/homebrew-ldc2/downloads/ldc2-2013-06-08.zip'
homepage 'https://github.com/ldc-developers/ldc'
sha1 '4352ee0256f3be9926d8d0497344b768f51ce22a'
depends_on 'cmake' => :build
depends_on 'llvm'
@vmule
vmule / dns_query.sh
Created June 21, 2016 12:46
DNS interrogator script
#!/bin/bash
COMMON_SUBDOMAINS=(www mail smtp pop imap blog en ftp ssh login)
if [[ "$2" == "x" ]]; then
dig +nocmd "$1" +noall +answer "${3:-any}"
wild_ips="$(dig +short "*.$1" "${3:-any}" | tr '\n' '|')"
wild_ips="${wild_ips%|}"
for sub in "${COMMON_SUBDOMAINS[@]}"; do
dig +nocmd "$sub.$1" +noall +answer "${3:-any}"
done | grep -vE "${wild_ips}"
dig +nocmd "*.$1" +noall +answer "${3:-any}"