From c781b63de5417e58bd6c6f34f57bc978c9139bca Mon Sep 17 00:00:00 2001 From: James Bury <19847770+d3an@users.noreply.github.com> Date: Mon, 21 Feb 2022 21:33:08 -0500 Subject: [PATCH] Update go version, CLI, miscellaneous bugs (#87) --- .go-version | 2 +- .golangci.yaml | 4 +- .pre-commit-config.yaml | 6 +- calendar/calendar.go | 4 +- calendar/calendar_test.go | 3 +- earnings/earnings.go | 4 +- earnings/earnings_test.go | 3 +- finviz/cmd/calendar/calendar.go | 27 +- finviz/cmd/earnings/earnings.go | 27 +- finviz/cmd/news/news.go | 38 +- finviz/cmd/quote/quote.go | 37 +- finviz/cmd/root.go | 2 +- finviz/cmd/screener/screener.go | 30 +- go.mod | 14 +- go.sum | 12 +- news/cassettes/source_news_view.yaml | 2105 ++++++++++++++++++++++- news/cassettes/time_news_view.yaml | 1925 ++++++++++++++++++++- news/news.go | 48 +- news/news_test.go | 12 +- quote/quote.go | 11 +- quote/quote_test.go | 5 +- screener/screener.go | 13 +- screener/screener_test.go | 7 +- utils/cli.go | 62 + utils/client.go | 26 - utils/test/utils.go | 59 + utils/utils.go | 3 +- utils/{utils_tests.go => utils_test.go} | 0 28 files changed, 4274 insertions(+), 215 deletions(-) create mode 100644 utils/cli.go delete mode 100644 utils/client.go create mode 100644 utils/test/utils.go rename utils/{utils_tests.go => utils_test.go} (100%) diff --git a/.go-version b/.go-version index 98e863c..3661bc0 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.15.8 +1.17.7 diff --git a/.golangci.yaml b/.golangci.yaml index 25aae98..038aa85 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -92,11 +92,11 @@ linters: - rowserrcheck - exportloopref - staticcheck - - structcheck + # - structcheck - typecheck - unconvert - unparam - - unused + # - unused - varcheck - whitespace diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 996b9bb..5b3253d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,7 @@ fail_fast: true repos: - repo: git://github.com/dnephin/pre-commit-golang - rev: master + rev: v0.5.0 hooks: - id: go-fmt - id: go-mod-tidy @@ -14,10 +14,10 @@ repos: - id: no-go-testing - id: golangci-lint # - id: go-critic - - id: go-unit-tests + # - id: go-unit-tests - id: go-build - repo: git://github.com/pre-commit/pre-commit-hooks - rev: v0.7.1 + rev: v4.1.0 hooks: - id: check-merge-conflict - id: check-yaml diff --git a/calendar/calendar.go b/calendar/calendar.go index 93123ec..fc1a7b5 100644 --- a/calendar/calendar.go +++ b/calendar/calendar.go @@ -7,7 +7,7 @@ package calendar import ( "fmt" - "io/ioutil" + "io" "net" "net/http" "strconv" @@ -83,7 +83,7 @@ func (c *Client) GetCalendar() (*dataframe.DataFrame, error) { } defer resp.Body.Close() - body, err := ioutil.ReadAll(resp.Body) + body, err := io.ReadAll(resp.Body) if err != nil { return nil, err } diff --git a/calendar/calendar_test.go b/calendar/calendar_test.go index 17e0f9c..f916caa 100644 --- a/calendar/calendar_test.go +++ b/calendar/calendar_test.go @@ -16,6 +16,7 @@ import ( "github.com/stretchr/testify/require" "github.com/d3an/finviz/utils" + "github.com/d3an/finviz/utils/test" ) func newTestClient(config *Config) *Client { @@ -23,7 +24,7 @@ func newTestClient(config *Config) *Client { return &Client{ Client: &http.Client{ Timeout: 30 * time.Second, - Transport: utils.AddHeaderTransport(config.recorder), + Transport: test.AddHeaderTransport(config.recorder), }, } } diff --git a/earnings/earnings.go b/earnings/earnings.go index 6b2d6dc..1b1ebf3 100644 --- a/earnings/earnings.go +++ b/earnings/earnings.go @@ -7,7 +7,7 @@ package earnings import ( "fmt" - "io/ioutil" + "io" "net" "net/http" "sync" @@ -81,7 +81,7 @@ func (c *Client) GetEarnings() (*dataframe.DataFrame, error) { } defer resp.Body.Close() - body, err := ioutil.ReadAll(resp.Body) + body, err := io.ReadAll(resp.Body) if err != nil { return nil, err } diff --git a/earnings/earnings_test.go b/earnings/earnings_test.go index b1d086b..1e4cf66 100644 --- a/earnings/earnings_test.go +++ b/earnings/earnings_test.go @@ -16,6 +16,7 @@ import ( "github.com/stretchr/testify/require" "github.com/d3an/finviz/utils" + "github.com/d3an/finviz/utils/test" ) func newTestClient(config *Config) *Client { @@ -23,7 +24,7 @@ func newTestClient(config *Config) *Client { return &Client{ Client: &http.Client{ Timeout: 30 * time.Second, - Transport: utils.AddHeaderTransport(config.recorder), + Transport: test.AddHeaderTransport(config.recorder), }, } } diff --git a/finviz/cmd/calendar/calendar.go b/finviz/cmd/calendar/calendar.go index a5e7e93..f9920bb 100644 --- a/finviz/cmd/calendar/calendar.go +++ b/finviz/cmd/calendar/calendar.go @@ -13,42 +13,29 @@ import ( ) var ( - outputCSVArg string - outputJSONArg string + outFile string - // Cmd is the CLI subcommand for FinViz news + // Cmd is the CLI subcommand for Finviz news Cmd = &cobra.Command{ Use: "calendar", Aliases: []string{"cal", "ec"}, - Short: "Finviz Economic Calendar.", + Short: "Finviz Economic Calendar", Long: "Finviz Economic Calendar returns this week's Economic Calendar.", Run: func(cmd *cobra.Command, args []string) { - var err error - client := calendar.New(nil) df, err := client.GetCalendar() if err != nil { utils.Err(err) } - if outputCSVArg != "" { - if err := utils.ExportCSV(df, outputCSVArg); err != nil { - utils.Err(err) - } - } else if outputJSONArg != "" { - if err := utils.ExportJSON(df, outputJSONArg); err != nil { - utils.Err(err) - } - } else { - utils.PrintFullDataFrame(df) + if err = utils.ExportData(df, outFile); err != nil { + utils.Err(err) } }, } ) func init() { - // --output-csv data.csv - // --output-json data.json - Cmd.Flags().StringVar(&outputCSVArg, "output-csv", "", "outputFileName.csv") - Cmd.Flags().StringVar(&outputJSONArg, "output-json", "", "outputFileName.json") + // -o + Cmd.Flags().StringVarP(&outFile, "outfile", "o", "", "output.(csv|json)") } diff --git a/finviz/cmd/earnings/earnings.go b/finviz/cmd/earnings/earnings.go index fd1d6c5..7d612fc 100644 --- a/finviz/cmd/earnings/earnings.go +++ b/finviz/cmd/earnings/earnings.go @@ -13,42 +13,29 @@ import ( ) var ( - outputCSVArg string - outputJSONArg string + outFile string - // Cmd is the CLI subcommand for FinViz news + // Cmd is the CLI subcommand for Finviz news Cmd = &cobra.Command{ Use: "earnings", Aliases: []string{"e"}, - Short: "Finviz Earnings.", + Short: "Finviz Earnings", Long: "Finviz Earnings returns the tickers with earnings releases left this week.", Run: func(cmd *cobra.Command, args []string) { - var err error - client := earnings.New(nil) df, err := client.GetEarnings() if err != nil { utils.Err(err) } - if outputCSVArg != "" { - if err := utils.ExportCSV(df, outputCSVArg); err != nil { - utils.Err(err) - } - } else if outputJSONArg != "" { - if err := utils.ExportJSON(df, outputJSONArg); err != nil { - utils.Err(err) - } - } else { - utils.PrintFullDataFrame(df) + if err = utils.ExportData(df, outFile); err != nil { + utils.Err(err) } }, } ) func init() { - // --output-csv data.csv - // --output-json data.json - Cmd.Flags().StringVar(&outputCSVArg, "output-csv", "", "outputFileName.csv") - Cmd.Flags().StringVar(&outputJSONArg, "output-json", "", "outputFileName.json") + // -o + Cmd.Flags().StringVarP(&outFile, "outfile", "o", "", "output.(csv|json)") } diff --git a/finviz/cmd/news/news.go b/finviz/cmd/news/news.go index a92ef44..20e9934 100644 --- a/finviz/cmd/news/news.go +++ b/finviz/cmd/news/news.go @@ -13,45 +13,33 @@ import ( ) var ( - outputCSVArg string - outputJSONArg string - viewArg string + outFile string + view *utils.Enum - // Cmd is the CLI subcommand for FinViz news + // Cmd is the CLI subcommand for Finviz news Cmd = &cobra.Command{ Use: "news", Aliases: []string{"ns"}, - Short: "FinViz News.", - Long: "FinViz News returns the latest news.", + Short: "Finviz News", + Long: "Finviz News returns the latest news.", Run: func(cmd *cobra.Command, args []string) { - var err error - client := news.New(nil) - df, err := client.GetNews(viewArg) + df, err := client.GetNews(view.Value) if err != nil { utils.Err(err) } - if outputCSVArg != "" { - if err := utils.ExportCSV(df, outputCSVArg); err != nil { - utils.Err(err) - } - } else if outputJSONArg != "" { - if err := utils.ExportJSON(df, outputJSONArg); err != nil { - utils.Err(err) - } - } else { - utils.PrintFullDataFrame(df) + if err = utils.ExportData(df, outFile); err != nil { + utils.Err(err) } }, } ) func init() { - // -v 1 - // --output-csv data.csv - // --output-json data.json - Cmd.Flags().StringVarP(&viewArg, "view", "v", "1", "2") - Cmd.Flags().StringVar(&outputCSVArg, "output-csv", "", "outputFileName.csv") - Cmd.Flags().StringVar(&outputJSONArg, "output-json", "", "outputFileName.json") + // -v time|source + // -o + view = utils.NewEnum([]string{"time", "source"}, "time") + Cmd.Flags().VarP(view, "view", "v", "time|source") + Cmd.Flags().StringVarP(&outFile, "outfile", "o", "", "output.(csv|json)") } diff --git a/finviz/cmd/quote/quote.go b/finviz/cmd/quote/quote.go index 564e143..3492bb6 100644 --- a/finviz/cmd/quote/quote.go +++ b/finviz/cmd/quote/quote.go @@ -13,45 +13,32 @@ import ( ) var ( - outputCSVArg string - outputJSONArg string - tickerArgs []string + outFile string + tickers []string - // Cmd is the CLI subcommand for FinViz news + // Cmd is the CLI subcommand for Finviz news Cmd = &cobra.Command{ Use: "quote", Aliases: []string{"q", "quotes"}, - Short: "FinViz Quotes.", - Long: "FinViz Quotes returns the quotes for tickers provided.", + Short: "Finviz Quotes", + Long: "Finviz Quotes returns the quotes for tickers provided.", Run: func(cmd *cobra.Command, args []string) { - var err error - client := quote.New(nil) - results, err := client.GetQuotes(tickerArgs) + results, err := client.GetQuotes(tickers) if err != nil { utils.Err(err) } - if outputCSVArg != "" { - if err := utils.ExportCSV(results.Data, outputCSVArg); err != nil { - utils.Err(err) - } - } else if outputJSONArg != "" { - if err := utils.ExportJSON(results.Data, outputJSONArg); err != nil { - utils.Err(err) - } - } else { - utils.PrintFullDataFrame(results.Data) + if err = utils.ExportData(results.Data, outFile); err != nil { + utils.Err(err) } }, } ) func init() { - // -v 1 - // --output-csv data.csv - // --output-json data.json - Cmd.Flags().StringSliceVarP(&tickerArgs, "tickers", "t", nil, "AAPL,GS,amzn") - Cmd.Flags().StringVar(&outputCSVArg, "output-csv", "", "outputFileName.csv") - Cmd.Flags().StringVar(&outputJSONArg, "output-json", "", "outputFileName.json") + // -t aapl,amzn,tsla + // -o + Cmd.Flags().StringSliceVarP(&tickers, "tickers", "t", nil, "AAPL,GS,amzn") + Cmd.Flags().StringVarP(&outFile, "outfile", "o", "", "output.(csv|json)") } diff --git a/finviz/cmd/root.go b/finviz/cmd/root.go index bf3337d..e5d6a7c 100644 --- a/finviz/cmd/root.go +++ b/finviz/cmd/root.go @@ -20,7 +20,7 @@ import ( var rootCmd = &cobra.Command{ Use: "finviz", - Short: "This is an unofficial CLI for FinViz.com", + Short: "This is an unofficial CLI for Finviz.com", Run: func(cmd *cobra.Command, args []string) { if err := cmd.Help(); err != nil { fmt.Println("Error: ", err) diff --git a/finviz/cmd/screener/screener.go b/finviz/cmd/screener/screener.go index 051203f..c9b1579 100644 --- a/finviz/cmd/screener/screener.go +++ b/finviz/cmd/screener/screener.go @@ -13,47 +13,33 @@ import ( ) var ( - url string - outputCSVArg string - outputJSONArg string + outFile string // Cmd is the CLI subcommand for the Screener app Cmd = &cobra.Command{ Use: "screener ", Aliases: []string{"screen", "scr"}, - Short: "FinViz Stock Screener.", - Long: "FinViz Stock Screener searches through large amounts of stock data and returns a list " + + Short: "Finviz Stock Screener", + Long: "Finviz Stock Screener searches through large amounts of stock data and returns a list " + "of stocks that match one or more selected criteria.", Run: func(cmd *cobra.Command, args []string) { - if url == "" { + if len(args) == 0 { utils.Err("URL not provided") } client := New(nil) - df, err := client.GetScreenerResults(url) + df, err := client.GetScreenerResults(args[0]) if err != nil { utils.Err(err) } - if outputCSVArg != "" { - if err := utils.ExportCSV(df, outputCSVArg); err != nil { - utils.Err(err) - } - } else if outputJSONArg != "" { - if err := utils.ExportJSON(df, outputJSONArg); err != nil { - utils.Err(err) - } - } else { - utils.PrintFullDataFrame(df) + if err = utils.ExportData(df, outFile); err != nil { + utils.Err(err) } }, } ) func init() { - // --output-csv data.csv - // --output-json data.json - Cmd.Flags().StringVar(&outputCSVArg, "output-csv", "", "outputFileName.csv") - Cmd.Flags().StringVar(&outputJSONArg, "output-json", "", "outputFileName.json") - Cmd.Flags().StringVar(&url, "url", "", "https://finviz.com/screener.ashx?v=110&f=exch_nyse") + Cmd.Flags().StringVarP(&outFile, "outfile", "o", "", "output.(csv|json)") } diff --git a/go.mod b/go.mod index c61d2b5..68514c3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/d3an/finviz -go 1.15 +go 1.17 require ( github.com/PuerkitoBio/goquery v1.8.0 @@ -11,6 +11,16 @@ require ( github.com/pkg/errors v0.9.1 github.com/spf13/cobra v1.3.0 github.com/stretchr/testify v1.7.0 - golang.org/x/net v0.0.0-20220107192237-5cfca573fb4d // indirect +) + +require ( + github.com/andybalholm/cascadia v1.3.1 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/spf13/pflag v1.0.5 // indirect + golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect gonum.org/v1/gonum v0.9.3 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect ) diff --git a/go.sum b/go.sum index 33a4271..5b9489a 100644 --- a/go.sum +++ b/go.sum @@ -266,7 +266,6 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= @@ -309,7 +308,6 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -398,7 +396,6 @@ golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136 h1:A1gGSx58LAGVHUUsOf7IiR0u8Xb6W51gRwfDBhkdcaw= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= @@ -471,7 +468,6 @@ golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b h1:uwuIcX0g4Yl1NC5XAz37xsr2lTtcqevgzYNVt49waME= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= @@ -483,8 +479,8 @@ golang.org/x/net v0.0.0-20210423184538-5f58ad60dda6/go.mod h1:OJAsFXCWl8Ukc7SiCT golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210916014120-12bc252f5db8/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220107192237-5cfca573fb4d h1:62NvYBuaanGXR2ZOfwDFkhhl6X1DUgf8qg3GuQvxZsE= -golang.org/x/net v0.0.0-20220107192237-5cfca573fb4d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd h1:O7DYs+zxREGLKzKoMQrtrEacpb0ZVXA5rIwylE2Xchk= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -579,7 +575,9 @@ golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211205182925-97ca703d548d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -807,7 +805,6 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -821,7 +818,6 @@ gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/news/cassettes/source_news_view.yaml b/news/cassettes/source_news_view.yaml index 234238b..f68e39f 100644 --- a/news/cassettes/source_news_view.yaml +++ b/news/cassettes/source_news_view.yaml @@ -6,45 +6,2120 @@ interactions: form: {} headers: User-Agent: - - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 + - "" url: https://finviz.com/news.ashx?v=2 method: GET response: - body: "\n\n\nStock Market News & Blogs\n\r\n \n\n\n\n\n\n\n\n\n\n\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \n
Your browser is no longer supported. Please, upgrade your browser.
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
HomeNewsScreenerMapsGroupsPortfolioInsiderFuturesForexCryptoBacktestsElite\r\n \r\n \r\n Help\r\n \r\n LoginRegister
\r\n \r\n \r\n \r\n
\n\r\n
\r\n \r\n Missing your favorite blog here?\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \"\"\r\n \r\n NEWS\r\n \r\n \r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Bloomberg
\r\n
Oct-12
China Exports Up, Imports Surge in September on Global Recovery
] delay=[100]\">\r\n China Exports Up, Imports Surge in September on Global Recovery\r\n
Oct-12
China Set to Price $6 Billion Debt Deal as Soon as Wednesday
] delay=[100]\">\r\n China Set to Price $6 Billion Debt Deal as Soon as Wednesday\r\n \r\n \r\n \r\n Oct-12\r\n Car Sales in China Shine as Rest of World Reels From Pandemic] delay=[100]\">\r\n Car Sales in China Shine as Rest of World Reels From Pandemic\r\n \r\n \r\n \r\n Oct-12\r\n U.S. Futures Retreat; Dollar, Treasuries Gain: Markets Wrap] delay=[100]\">\r\n U.S. Futures Retreat; Dollar, Treasuries Gain: Markets Wrap\r\n \r\n \r\n \r\n Oct-12\r\n China’s Stock Market Tops $10 Trillion for First Time Since 2015] delay=[100]\">\r\n China’s Stock Market Tops $10 Trillion for First Time Since 2015\r\n \r\n \r\n \r\n Oct-12\r\n Hong Kong Delays Market Trading as Tropical Storm Nangka Nears] delay=[100]\">\r\n Hong Kong Delays Market Trading as Tropical Storm Nangka Nears\r\n \r\n \r\n \r\n Oct-12\r\n Trump Tests Negative; Singapore Economy to See Hit: Virus Update] delay=[100]\">\r\n Trump Tests Negative; Singapore Economy to See Hit: Virus Update\r\n \r\n \r\n \r\n Oct-12\r\n Australia Seeks Clarity From Beijing on Coal Import Ban] delay=[100]\">\r\n Australia Seeks Clarity From Beijing on Coal Import Ban\r\n \r\n \r\n \r\n Oct-12\r\n Oil Stems Decline Near $40 Amid Easing Supply Constraints] delay=[100]\">\r\n Oil Stems Decline Near $40 Amid Easing Supply Constraints\r\n \r\n \r\n \r\n Oct-12\r\n Dalio Says ‘Time Is on China’s Side’ in Power Struggle With U.S.] delay=[100]\">\r\n Dalio Says ‘Time Is on China’s Side’ in Power Struggle With U.S.\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Reuters
\r\n
Oct-12
China's imports grew at their\nfastest pace this year in September, while exports extended\ntheir strong gains as more trading partners lifted coronavirus\nrestrictions in a further boost to the world's second-biggest\neconomy.
] delay=[100]\">\r\n WRAPUP 2-China's imports, exports surge as global economy reopens\r\n \r\n \r\n \r\n Oct-12\r\n China's imports grew at their\nfastest pace this year in September, while exports extended\ntheir strong gains as more trading partners lifted coronavirus\nrestrictions in a further boost to the world's second-biggest\neconomy.] delay=[100]\">\r\n WRAPUP 1-China's imports, exports surge as global economy reopens\r\n \r\n \r\n \r\n Oct-12\r\n China's imports of major commodities\nincluding iron ore, copper, oil and soybeans rose in September\nfrom a month earlier. Coal imports eased.] delay=[100]\">\r\n INSTANT VIEW-China's iron ore, copper imports rise in Sept from August\r\n \r\n \r\n \r\n Oct-12\r\n China imported 834,000 tonnes of\nmeat in September, customs data showed on Tuesday, similar to\nlast month, as the country continues stocking up on protein\nafter a plunge in its pork output.] delay=[100]\">\r\n China September meat imports at 834,000 tonnes - customs\r\n \r\n \r\n \r\n Oct-12\r\n * SoftBank has growing cash pile following asset sales\n(Adds details of SoftBank's IPO pipeline)] delay=[100]\">\r\n UPDATE 5-SoftBank Vision Fund seeking cash for blank-cheque firm -source\r\n \r\n \r\n \r\n Oct-12\r\n Japanese shares reversed course on\nTuesday to trade slightly lower as U.S. futures fell during\nAsian trade, while investors looked past an overnight tech rally\non Wall Street and waited for corporate earnings results for\nfurther direction.] delay=[100]\">\r\n Japan shares edge lower as U.S. futures fall\r\n \r\n \r\n \r\n Oct-12\r\n Asian shares slipped\non Tuesday, brushing off a firmer Wall Street lead as China's\npost-holiday rally cooled, although a buoyant tech sector and\nfresh optimism about U.S. stimulus are expected to continue to\nsupport sentiment.] delay=[100]\">\r\n GLOBAL MARKETS-Asian shares defy Wall St gains as China rally cools\r\n \r\n \r\n \r\n Oct-12\r\n China's exports in September\nrose 9.9% from a year earlier, and imports surged 13.2%, customs\ndata showed on Tuesday.] delay=[100]\">\r\n China Sept exports rise 9.9% y/y, imports surge 13.2%\r\n \r\n \r\n \r\n Oct-12\r\n Asian shares defy Wall St. gains as China rally cools] delay=[100]\">\r\n Asian shares defy Wall St. gains as China rally cools\r\n \r\n \r\n \r\n Oct-12\r\n The dollar flirted with three-week\nlows on Tuesday as investors stuck to hopes that there will be\nlarge U.S. fiscal stimulus after the Nov. 3 election to shore up\na pandemic-hit economy, supporting riskier currencies.] delay=[100]\">\r\n CORRECTED-FOREX-Dollar flirts with 3-wk low as investors count on eventual stimulus\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
BBC
\r\n
Oct-12
High borrowing and low growth after Covid will leave the economy stretched for years, says a think tank.
] delay=[100]\">\r\n UK economy cannot be fully protected, says IFS\r\n \r\n \r\n \r\n Oct-12\r\n Wisconsin officials say the firm's investment has not met minimum targets outlined in 2017.] delay=[100]\">\r\n Foxconn investment falls short of Trump promise\r\n \r\n \r\n \r\n Oct-12\r\n Mitchells & Butlers, the pubs and restaurants group, has not disclosed how many jobs are at risk.] delay=[100]\">\r\n All Bar One owner consulting on job cuts\r\n \r\n \r\n \r\n Oct-12\r\n Hospitality venues across the UK say they will struggle under the new restrictions.] delay=[100]\">\r\n Bars and restaurants 'reaching point of no return'\r\n \r\n \r\n \r\n Oct-12\r\n The work of Paul Milgrom and Robert Wilson is used in the sale of airport slots and radio spectrums.] delay=[100]\">\r\n Nobel: US auction theorists win Economics Prize\r\n \r\n \r\n \r\n Oct-12\r\n The UK would be following in the footsteps of countries like Japan if it cuts the cost of borrowing.] delay=[100]\">\r\n Bank of England questions banks over negative rates\r\n \r\n \r\n \r\n Oct-12\r\n More than 100,000 people support Kevin Rudd's call for a probe into Rupert Murdoch's media influence.] delay=[100]\">\r\n Australians sign Kevin Rudd's call for inquiry into Murdoch influence\r\n \r\n \r\n \r\n Oct-12\r\n Alex Cruz is leaving after more than four years with the airline, replaced by Aer Lingus' Sean Doyle.] delay=[100]\">\r\n British Airways' boss replaced amid industry's 'worst crisis'\r\n \r\n \r\n \r\n Oct-11\r\n The UK economy may have grown by as much as 17% in the three months to September, says forecasters.] delay=[100]\">\r\n UK economy: Shoppers aid growth but slowdown ahead, says report\r\n \r\n \r\n \r\n Oct-09\r\n The move puts the US tech giant in the company of firms such as Facebook and Twitter.] delay=[100]\">\r\n Microsoft makes remote work option permanent\r\n \r\n \r\n\r\n \"\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
WSJ
\r\n
Oct-12
Tech Stocks Power Markets Higher
] delay=[100]\">\r\n Tech Stocks Power Markets Higher\r\n \r\n \r\n \r\n Oct-12\r\n The prospect of a higher corporate tax rate isn’t so unappealing when set against the risk of a chaotic global trade and tax war.] delay=[100]\">\r\n Global Companies Are Caught Between New Taxes and a Trade War\r\n \r\n \r\n \r\n Oct-12\r\n The videoconferencing superstar has become a household name but will soon need to show it can tap new markets.] delay=[100]\">\r\n Zoom Will Need to Start Phoning It In\r\n \r\n \r\n \r\n Oct-12\r\n Covid-19 has produced what should be a bumper year for funeral homes, but a rise in cremations has pinched margins and created an opening for e-commerce.] delay=[100]\">\r\n Even Funeral Homes Are Getting Pinched by Amazon\r\n \r\n \r\n \r\n Oct-12\r\n The U.K. central bank asked British lenders to assess their readiness for subzero interest rates, a sign that officials are weighing the merits of a policy that bankers say would heap problems on a sector already weighed down by Covid-19 and Brexit.] delay=[100]\">\r\n Bank of England Questions Lenders on Readiness for Negative Rates\r\n \r\n \r\n \r\n Oct-12\r\n Prices rose toward their highest level in nearly two years, extending a recent rally.] delay=[100]\">\r\n Natural Gas Surges as Traders Brace for Cold Winter\r\n \r\n \r\n \r\n Oct-12\r\n The financial-technology behemoth raised nearly $9 billion last week from mutual funds sold on its platform to individual investors, who had to agree to lock up their money for 18 months.] delay=[100]\">\r\n Ant Group Taps Millions of Its Own Users for Early-Bird IPO Funds\r\n \r\n \r\n \r\n Oct-12\r\n Investors are betting Spanish lender Banco Santander won’t be able to make interest payments on a risky form of bank debt. In a strange twist of events, instead of shunning the debt, investors are scooping it up.] delay=[100]\">\r\n Santander Bond Surges as Investors Take a Risky Bet on Debt Redemption\r\n \r\n \r\n \r\n Oct-12\r\n Seven central banks and the Bank for International Settlements published a report outlining common principles for issuing digital currencies to the public. What remains unclear is why this pitfall-ridden shift is necessary.] delay=[100]\">\r\n Central Banks Haven't Made a Convincing Case for Digital Currencies\r\n \r\n \r\n \r\n Oct-12\r\n U.S. stock futures point to a muted advance when the market opens. Tech giants Apple and Twitter are among the biggest gainers.] delay=[100]\">\r\n Twitter, Apple, PG&E, United Airlines: What to Watch When the Stock Market Opens Today\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
CNBC
\r\n
Oct-12
China is set to release U.S. dollar-denominated trade figures for September.
] delay=[100]\">\r\n China says exports and imports rose in the third quarter in yuan terms\r\n \r\n \r\n \r\n Oct-12\r\n Bryn Mawr’s Jeff Mills warns it's too difficult to determine the economic recovery's path.] delay=[100]\">\r\n Virus aid uncertainty will likely burn short-term investors, Bryn Mawr's Jeff Mills warns\r\n \r\n \r\n \r\n Oct-12\r\n Third quarter earnings season kicks off on Tuesday with reports from JPMorgan, Citigroup and Delta Air Lines.] delay=[100]\">\r\n Stock futures flat as investors await earnings season kickoff\r\n \r\n \r\n \r\n Oct-12\r\n At least 19 analysts initiated coverage of Snowflake on Monday, with price targets ranging from $214 to $350.] delay=[100]\">\r\n Snowflake draws bullish calls from Wall Street, though some analysts say stock is fully valued\r\n \r\n \r\n \r\n Oct-12\r\n See which stocks are posting big moves after the bell on October 12.] delay=[100]\">\r\n Stocks making the biggest moves after hours: Disney, Twilio, Ethan Allen and more\r\n \r\n \r\n \r\n Oct-12\r\n Tech shares rallied on Monday to lead the broader market higher.] delay=[100]\">\r\n Here's what happened to the stock market on Monday\r\n \r\n \r\n \r\n Oct-12\r\n The move from Revolut, valued at $5.5 billion in a February fundraising round, is the latest example of one of a new breed of digital challengers seeking to become a regulated bank.] delay=[100]\">\r\n European fintech giant Revolut is close to applying for a bank charter in California, sources say\r\n \r\n \r\n \r\n Oct-12\r\n One of Warren Buffett's top lieutenants buys into Dillard's. Twitter gets a boost from an analyst upgrade.] delay=[100]\">\r\n Stocks making the biggest moves midday: Dillard's, Twilio, Ford Motor, Apple & more\r\n \r\n \r\n \r\n Oct-12\r\n Dillard's pops after Berkshire Hathaway investment manager discloses personal stake.] delay=[100]\">\r\n Dillard's jumps 15% after one of Buffett's investing lieutenants discloses personal stake\r\n \r\n \r\n \r\n Oct-12\r\n These are the stocks posting the largest moves before the bell.] delay=[100]\">\r\n Stocks making the biggest moves premarket: Twilio, Apple, AstraZeneca, Levi Strauss\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
The New York Times
\r\n
Oct-12
Newspapers and networks are wary of exposing their staff members to the president and his aides, saying they do not have assurance that basic precautions will be taken to protect reporters’ health.
] delay=[100]\">\r\n As Trump Flouts Safety Protocols, News Outlets Balk at Close Coverage\r\n \r\n \r\n \r\n Oct-12\r\n The move was one of the biggest by Bob Chapek since he became C.E.O. in February.] delay=[100]\">\r\n Disney Reorganization Puts a Sharper Focus on Streaming\r\n \r\n \r\n \r\n Oct-12\r\n Samsung and Fila distanced themselves from the K-pop band BTS, becoming the latest example of multinational companies deferring to Chinese patriotic sentiment.] delay=[100]\">\r\n BTS Honored Korean War Sacrifices. Some in China Detected an Insult.\r\n \r\n \r\n \r\n Oct-12\r\n The talks at the Organization for Economic Cooperation and Development have progressed on several fronts, but a dispute remains between the Trump administration and key allies.] delay=[100]\">\r\n Global Talks on Taxing Tech Firms Will Slip Into 2021\r\n \r\n \r\n \r\n Oct-12\r\n The two U.S. academics were honored for their work in auction theory.] delay=[100]\">\r\n 2020 Nobel in Economics Is Awarded to Paul Milgrom and Robert Wilson\r\n \r\n \r\n \r\n Oct-12\r\n Leon Black, whose $9 billion fortune could buy the best counsel in the world, paid at least $50 million to Mr. Epstein for advice and services after most others had deserted him.] delay=[100]\">\r\n The Billionaire Who Stood by Jeffrey Epstein\r\n \r\n \r\n \r\n Oct-12\r\n When corporations try to belatedly address issues of diversity, equity and inclusion, they often drop the responsibility on their few Black employees.] delay=[100]\">\r\n Their Bosses Asked Them to Lead Diversity Reviews. Guess Why.\r\n \r\n \r\n \r\n Oct-12\r\n A surge in worldwide demand by educators for low-cost laptops has created shipment delays and pitted desperate schools against one another. Districts with deep pockets often win out.] delay=[100]\">\r\n The Digital Divide Starts With a Laptop Shortage\r\n \r\n \r\n \r\n Oct-11\r\n A top editor is now reviewing Rukmini Callimachi’s reporting on terrorism, which turned distant conflicts into accessible stories but drew criticism from colleagues.] delay=[100]\">\r\n An Arrest in Canada Casts a Shadow on a New York Times Star, and The Times\r\n \r\n \r\n \r\n Oct-09\r\n Fortnite’s parent company, Epic Games, had broken its contract with Apple, a federal judge found. The case goes to trial next year.] delay=[100]\">\r\n Apple Does Not Need to Return Fortnite to App Store, Judge Rules\r\n \r\n \r\n\r\n \"\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
MarketWatch
\r\n
Oct-12
5 stocks for the next 10 years — some picks are obvious, others not so much
] delay=[100]\">\r\n 5 stocks for the next 10 years — some picks are obvious, others not so much\r\n \r\n \r\n \r\n Oct-12\r\n Williams-Sonoma Inc. said late Monday its board of directors has OK'd a 10% dividend increase to 53 cents a share. The dividend is payable on Nov. 27 to stockholders of record on Oct. 23. The retailer also said it has resumed its share buyback progr...] delay=[100]\">\r\n Williams-Sonoma raises dividend, resumes share buyback\r\n \r\n \r\n \r\n Oct-12\r\n U.S. stocks on Monday booked sharp gains to start the week ahead of the unofficial start of earnings and continued focus on the coming presidential election and stalled stimulus talks on Congress. The Dow Jones Industrial Average (: DJIA) closed the ...] delay=[100]\">\r\n Stocks book 4th straight gain to start week and Nasdaq ends 1.5% below record high ahead of earnings kick off\r\n \r\n \r\n \r\n Oct-12\r\n The Nasdaq Composite Index on Monday afternoon was surging more than 3% higher, putting the technology-laden index within striking distance of exiting a plunge into correction territory produced back on Sept. 8. A drop of at least 10% for an asset fr...] delay=[100]\">\r\n Nasdaq Composite stands less than 1% from exiting correction territory Monday afternoon\r\n \r\n \r\n \r\n Oct-12\r\n Oil futures on Monday marked their lowest settlement in a week with crude production poised to recover in Libya, Norway and the Gulf of Mexico. 'Supply woes have eased,' said David Madden, market analyst at CMC Markets UK. 'Production in the Gulf of ...] delay=[100]\">\r\n Oil ends at 1-week low as Libya and Norway output look to rise, Gulf of Mexico starts post-hurricane recovery\r\n \r\n \r\n \r\n Oct-12\r\n Gold futures climbed Monday to hold ground at their highest in roughly three weeks. Prices for the haven metal found support as uncertainty surrounding the outcome of the upcoming election prevailed, but gains in the U.S. stock market served to limit...] delay=[100]\">\r\n Gold futures finish higher, holding ground at 3-week high\r\n \r\n \r\n \r\n Oct-12\r\n Southwest Airlines is set to offer flights from Chicago's O'Hare International Airport for the first time, Crain's Chicago Business reports. The Dallas-based airline has had a major presence at Chicago's Midway Airport since 1985, where it is the lar...] delay=[100]\">\r\n Southwest to fly from O'Hare in Chicago for first time: report\r\n \r\n \r\n \r\n Oct-12\r\n Microsoft Corp. has foiled a sophisticated hacking plan to disrupt election infrastructure in the U.S., the company said Monday. Microsoft said it obtained a federal court order to disable the IP addresses associated with computer servers behind Tri...] delay=[100]\">\r\n Microsoft foils hacking operation to disrupt election\r\n \r\n \r\n \r\n Oct-12\r\n Shares of Carnival Corp. shed 2.3% in morning trading Monday, after the cruise operator said it has decided to cancel the remaining cruises, for a total of six ships, that operate from PortMiami and Port Canaveral for November. Carnival had said ear...] delay=[100]\">\r\n Carnival's stock falls after deciding it's not feasible to operate PortMiami, Port Canaveral cruises in November\r\n \r\n \r\n \r\n Oct-12\r\n Shares of Mallinckrodt Plc (S: mnk) tumbled 31.2% in trading on Monday after the company said it had filed for Chapter 11 bankruptcy, in part due to a proposed billion-dollar settlement for its alleged role in the U.S. opioid crisis. The drug maker s...] delay=[100]\">\r\n Mallinckrodt's stock drops as it announces bankruptcy filing\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Fox Business
\r\n
Oct-12
Money Map Press chief strategist Shah Gilani, Spotlight Asset Group CIO Shana Sissel, and Wealth Enhancement Group SVP Nicole Webb discuss their outlook for the markets.
] delay=[100]\">\r\n What's next for the markets?\r\n \r\n \r\n \r\n Oct-12\r\n Capitalist Pig Hedge Fund manager Jonathan Hoenig provides insight into stock market gains.] delay=[100]\">\r\n 'Technology powering the market forward': Jonathan Hoenig\r\n \r\n \r\n \r\n Oct-12\r\n Amazon and Apple take the lead as the Nasdaq climbs back.] delay=[100]\">\r\n LIVE Stock market updates and business headlines\r\n \r\n \r\n \r\n Oct-12\r\n Both Black and Apollo have moved quickly to distance themselves from Epstein following the allegations.] delay=[100]\">\r\n Apollo CEO, co-founder Leon Black may have funneled as much as $75M to Jeffrey Epstein: report\r\n \r\n \r\n \r\n Oct-12\r\n Former Chase Chief Economist Anthony Chan on his outlook for the markets and economy.] delay=[100]\">\r\n Economist: Forward earnings moving higher 'very encouraging' for equity market\r\n \r\n \r\n \r\n Oct-12\r\n Merida Capital Partners managing partner Mitch Baruchowitz on cannabis stocks going up due to potential decriminalization.] delay=[100]\">\r\n Cannabis stocks a buy?\r\n \r\n \r\n \r\n Oct-12\r\n Shares of department store company Dillard’s saw a boost in trading on Monday after an associate of billionaire hedge fund manager Warren Buffett loaded up on stock.] delay=[100]\">\r\n Dillard's get boost after Warren Buffett's right-hand man loads up on stock\r\n \r\n \r\n \r\n Oct-12\r\n A COVID-19 vaccine is critical for the health of the stock market, according to Goldman Sachs Group.] delay=[100]\">\r\n Coronavirus vaccine more important for stocks than presidential election winner: Goldman Sachs\r\n \r\n \r\n \r\n Oct-12\r\n Federated Hermes chief equity market strategist Phil Orlando discusses his outlook for the markets.] delay=[100]\">\r\n How would Trump, Biden’s economic plans impact the markets?\r\n \r\n \r\n \r\n Oct-12\r\n Stocks are setting up for a positive start to the week.] delay=[100]\">\r\n Tech jumps ahead of Amazon Prime Day, Apple reveal\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
CNN
\r\n
Oct-12
While the Asia-Pacific region treads water until a coronavirus vaccine is found, the West's biggest economies are drowning as a second wave firmly establishes itself in Europe.
] delay=[100]\">\r\n The West is being left behind as it squanders Covid-19 lessons from Asia-Pacific\r\n \r\n \r\n \r\n Oct-12\r\n Drugmaker Johnson & Johnson said Monday it has paused the advanced clinical trial of its experimental coronavirus vaccine because of an unexplained illness in one of the volunteers.] delay=[100]\">\r\n Johnson & Johnson pauses Covid-19 vaccine trial after 'unexplained illness'\r\n \r\n \r\n \r\n Oct-12\r\n Last week, Indonesia's parliament passed a controversial and sweeping jobs law that environmentalists say will have a disastrous impact on the country's forests and rich biodiversity.] delay=[100]\">\r\n Indonesia is putting business before the environment and that could be disastrous for its rainforests\r\n \r\n \r\n \r\n Oct-12\r\n They are all nervous.] delay=[100]\">\r\n Regretful Trump voters: 'I got it wrong'\r\n \r\n \r\n \r\n Oct-12\r\n Bangladesh is set to allow the death penalty for convicted rapists after weeks of protests over sexual violence in the country.] delay=[100]\">\r\n Bangladesh to allow death penalty for convicted rapists\r\n \r\n \r\n \r\n Oct-12\r\n CNN's Brianna Keilar breaks down how some vulnerable Republican senators are attempting to distance themselves from President Donald Trump ahead of the 2020 election.] delay=[100]\">\r\n These GOP senators are distancing themselves from Trump\r\n \r\n \r\n \r\n Oct-12\r\n Sen. Amy Klobuchar (D-MN) delivers her statement at the confirmation hearing for Judge Amy Coney Barrett, where Klobuchar calls the hearing a 'sham.'] delay=[100]\">\r\n 'Let me tell you a political secret': Klobuchar blasts hearing\r\n \r\n \r\n \r\n \r\n \r\n\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\" \"\"
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Trader Feed
\r\n
Oct-11
 Life is a gym.Every day is an opportunity for a workout, to make ourselves stronger, more fit.We can exercise our relationships, our patience, our focus, our persistence, our discipline, our learning, our trading--or we can go through the motio...
] delay=[100]\">\r\n Making Friends With Discomfort\r\n
Oct-06
 Here's a great exercise:Look at how you prepare for the trading day from the moment you wake up.  Look at how you approach your trading, how you make your decisions, how you deal with the ups and downs of P/L.  Look at how you review ...
] delay=[100]\">\r\n You Are Your Own Role Model\r\n \r\n \r\n \r\n Oct-04\r\n  Hate can be your ally in making changes.If you get to the point of actually *hating* your trading problems, you push those problems away from you.  You don't identify with them.  You don't lazily fall into them.If you *hate* frustrati...] delay=[100]\">\r\n How To Make Big Changes In Your Trading Psychology\r\n \r\n \r\n \r\n Sep-30\r\n  In the last blog post, I described how I think about markets and trade successfully.  When I follow that framework, I generally do well.  When I attempt to view and trade markets in other ways, I rarely succeed.The most recent Forbes ...] delay=[100]\">\r\n Why You're Having Trouble Getting To The Next Level Of Trading Success\r\n \r\n \r\n \r\n Sep-27\r\n  This was a question recently asked of me during a webinar.  It reminded me of an observation of a trading software vendor who provided expert support for his product.  He said that, whenever he spoke with traders needing support and d...] delay=[100]\">\r\n What Settings Do You Use For Your Technical Indicators?\r\n \r\n \r\n \r\n Sep-21\r\n  I recently posted on the topics of training for trading success and the factors that lead to success among developing traders.  Here is an example from my own trading.  TraderFeed readers are familiar with the NYSE TICK meas...] delay=[100]\">\r\n How To Identify Market Strength And Weakness In Real Time\r\n \r\n \r\n \r\n Sep-18\r\n  Imagine that you are an aspiring athlete.  You want to make the cut to join a championship team.  Here is the question:If you trained as hard for your sport as you currently train to improve your trading, what would be your odds of ma...] delay=[100]\">\r\n One Tough Question To Ask About Your Development As A Trader\r\n \r\n \r\n \r\n Sep-15\r\n  For short-term directional traders, opportunity often boils down to movement.  It's tough to take a lot out of a market that is moving in a narrow range.  This is why a common topic I hear among the traders I work with at SMB is wheth...] delay=[100]\">\r\n Relative Volume: How Much Opportunity Is In The Market Today?\r\n \r\n \r\n \r\n Sep-14\r\n  Traders Summit is a large online event, free of charge, that will feature a number of well-known presenters, many from the Forex trading world.  You can check it out here.  On Saturday, September 26th at 9 AM Eastern Time, Joe Perry o...] delay=[100]\">\r\n Free Group Coaching and Mentoring at Traders Summit\r\n \r\n \r\n \r\n Sep-13\r\n Contact For Trading Firms and Media:  steenbab at aol dot comMy Twitter Feed:  @steenbabRADICAL RENEWAL - Free blog book on trading, psychology, spirituality, and leading a fulfilling life---The Three Minute Trading Coach Videos---Forbes Ar...] delay=[100]\">\r\n BRETT STEENBARGER'S TRADING PSYCHOLOGY RESOURCE CENTER\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Mish's Global Economic Trend Analysis
\r\n
Oct-12
Trump goes after Nate Silver and Silver Responds.
] delay=[100]\">\r\n Trump Trolls Nate Silver in a Tweet\r\n \r\n \r\n \r\n Oct-12\r\n The Fed has a Municipal Liquidity Fund (MLF). Illinois has tapped it twice.] delay=[100]\">\r\n Illinois is the Only State to Borrow Money from the Fed\r\n \r\n \r\n \r\n Oct-12\r\n Senator Graham (R. S.C.) is going out of his way to lose his Senate election.] delay=[100]\">\r\n Senator Graham Insults Blacks, Tries Hard to Lose Election\r\n \r\n \r\n \r\n Oct-12\r\n Millennials want to buy a home but underestimate how much they need for a down payment.] delay=[100]\">\r\n Millennials Greatly Underestimate How Much They Need For a Down Payment\r\n \r\n \r\n \r\n Oct-11\r\n Independent restaurants skid towards bankruptcy as large chains recover.] delay=[100]\">\r\n Big Divide in the Restaurant Industry\r\n \r\n \r\n \r\n Oct-11\r\n Robinhood customer service is essentially nonexistent, even in cases of fraud.] delay=[100]\">\r\n Robinhood Accounts Looted and No Customer Service to Call\r\n \r\n \r\n \r\n Oct-11\r\n Republican and Democrat leaders want little to do with Trump's covid stimulus proposal. Reasons vary.] delay=[100]\">\r\n Republicans and Democrats Reject Trump's Covid Proposal\r\n \r\n \r\n \r\n Oct-10\r\n The Center for Disease Control issued a sweeping mask regulation but Trump blocked it.] delay=[100]\">\r\n Trump Blocked CDC From Requiring Masks on Public Transportation\r\n \r\n \r\n \r\n Oct-10\r\n Speculators are net short a record number of 30-year long bond contracts.] delay=[100]\">\r\n Long Bond Bears Should Fear a Huge Short Squeeze\r\n \r\n \r\n \r\n Oct-09\r\n Trump refuses to do a virtual debate so the sponsors formally cancelled the event.] delay=[100]\">\r\n Second Debate Cancelled, Biden Wins by Default\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Daily Reckoning
\r\n
Oct-09
This post The Theory That Will Revolutionize Economics appeared first on Daily Reckoning.\nHere at The Daily Reckoning, we are suspicious of most new ideas. They are often lunatic. But today, we yield the floor to America’s no.1 futurist, George Gilde...
] delay=[100]\">\r\n The Theory That Will Revolutionize Economics\r\n \r\n \r\n \r\n Oct-05\r\n This post Get Ready for Chaos appeared first on Daily Reckoning.\nJim Rickards shows you why you need to prepare for the coming chaos, even after the election itself…\nThe post Get Ready for Chaos appeared first on Daily Reckoning.] delay=[100]\">\r\n Get Ready for Chaos\r\n \r\n \r\n \r\n Oct-05\r\n This post Things Just Got Even Crazier appeared first on Daily Reckoning.\n“Just one more wild card in a year of wild cards including the pandemic itself, an economic depression, social unrest and a Supreme Court vacancy”…\nThe post Things Just Got Eve...] delay=[100]\">\r\n Things Just Got Even Crazier\r\n \r\n \r\n \r\n Oct-02\r\n This post What Hypocrites appeared first on Daily Reckoning.\nWe surprise a reader… How can a man of so much wealth — Donald Trump — pay so little in taxes when Bob pays so much?\nThe post What Hypocrites appeared first on Daily Reckoning.] delay=[100]\">\r\n What Hypocrites\r\n \r\n \r\n \r\n Oct-01\r\n This post Markets vs. Politics: Which Will It Be appeared first on Daily Reckoning.\nAfter Tuesday night’s debate we are reminded of the dismal reality of politics and why markets are far preferable to politics. Politics may be necessary, yet their ne...] delay=[100]\">\r\n Markets vs. Politics: Which Will It Be\r\n \r\n \r\n \r\n Sep-29\r\n This post About Tonight’s Debate appeared first on Daily Reckoning.\nThe one factor in tonight’s debate that could sway voters… The media’s hatred of Trump goes “way beyond” simple media bias…\nThe post About Tonight’s Debate appeared first on Daily Re...] delay=[100]\">\r\n About Tonight’s Debate\r\n \r\n \r\n \r\n Sep-28\r\n This post Monetary and Fiscal Policy Won’t Help appeared first on Daily Reckoning.\nJim Rickards shows you why monetary and fiscal policy cannot raise the economy out of what he calls the “new depression”…\nThe post Monetary and Fiscal Policy Won’t Hel...] delay=[100]\">\r\n Monetary and Fiscal Policy Won’t Help\r\n \r\n \r\n \r\n Sep-28\r\n This post Welcome to the “W-shaped” Recovery appeared first on Daily Reckoning.\nBy September, things will be back to normal, and the economy will be doing great.” That turned out to be completely false...\nThe post Welcome to the “W-shaped” Recovery a...] delay=[100]\">\r\n Welcome to the “W-shaped” Recovery\r\n \r\n \r\n \r\n Sep-26\r\n This post Civil War Two appeared first on Daily Reckoning.\nToday James Howard Kunstler shows you why he believes the upcoming election could result in Civil War Two.\nThe post Civil War Two appeared first on Daily Reckoning.] delay=[100]\">\r\n Civil War Two\r\n \r\n \r\n \r\n Sep-25\r\n This post This Is Revolutionizing Economics appeared first on Daily Reckoning.\nThe revolutionary “Information Theory of Economics”… “All scarcity is an effect of government planning and government “guarantees”…\nThe post This Is Revolutionizing Econom...] delay=[100]\">\r\n This Is Revolutionizing Economics\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
The Disciplined Investor
\r\n
Oct-11
Markets – up and over the 50-day Moving Average. Watching one forgotten sector NOW on the rise – and earnings season this coming week. Looking at the Polls and Pundits – both of which are usually wrong and how to consider positioning your...
] delay=[100]\">\r\n TDI Podcast: Portfolio Prep Time (#683)\r\n \r\n \r\n \r\n Oct-07\r\n President Trump is back at the White House after 72 hours in the hospital – a miracle cure – nothing to be afraid of. With the holiday shopping season around the corner – we look at the potential winners and losers during the pandem...] delay=[100]\">\r\n DHUnplugged #525: A Modern Day Miracle\r\n \r\n \r\n \r\n Oct-05\r\n Webinar Replay – Horowitz & Company Client Update October 5, 2020 REGISTER FOR THIS LIMITED SERIES Important Disclosures This is not a recommendation to buy or sell any security. Past performance is no indication of future results. Please r...] delay=[100]\">\r\n H&C – After Hours Q&A Popup Webinar (10/5/2020)\r\n \r\n \r\n \r\n Oct-03\r\n Dr. Richard Smith is our guest this week – talking about the weaponization of social media is social media and the TikTok deal. And…how quickly things change – the COVID fight continues as we are hopefully getting closer to a stimulus bil...] delay=[100]\">\r\n TDI Podcast: Surveillance Capitalization with Dr. Smith (#682)\r\n \r\n \r\n \r\n Sep-25\r\n Heading into the end of the quarter, the bull/bear fight continues. Large-caps fall but small-caps fall further. Massive outflows, the election and this little ditty is another possibility to blame for the recent sell-off. Oh, and  a few financial ti...] delay=[100]\">\r\n TDI Podcast: This Little Ditty (#681)\r\n \r\n \r\n \r\n Sep-23\r\n The fight to vote on a Supreme court pick provides bad news for markets. Worries about a second wave are starting to be seen, but there are still bright spots in the economic outlook. Massive supply hits markets, taking money away from some of the te...] delay=[100]\">\r\n DHUnplugged #524: A Hallow Ween\r\n \r\n \r\n \r\n Sep-22\r\n Webinar Replay – Horowitz & Company Client Update September 21, 2020 REGISTER FOR THIS LIMITED SERIES Important Disclosures This is not a recommendation to buy or sell any security. Past performance is no indication of future results. Pleas...] delay=[100]\">\r\n H&C – After Hours Q&A Popup Webinar (9/21/20)\r\n \r\n \r\n \r\n Sep-20\r\n Linda Raschke is our guest and what a great discussion we had. She teaches us all about Performance, Longevity and Consistency – the keys to trading success. The Fed puts it all on the table, but confuses markets – but is that the whole s...] delay=[100]\">\r\n TDI Podcast: Trading Sardines with Raschke (#680)\r\n \r\n \r\n \r\n Sep-16\r\n Asking the question: Is the correction over? The BigMac Index discussed, along with a dive into the TikTok drama. Noodle stats and new lock-downs. Plus a review of the Apple event – what is coming? Fed Limericks are Back – PLUS we are now...] delay=[100]\">\r\n DHUnplugged #523: Ad Astra Per Aspera\r\n \r\n \r\n \r\n Sep-13\r\n Moral Hazards in these times are starting to show within a few specific sectors. Markets take another leg down – lead by tech shares. Just about 50 days until the election – still no serious plan from either party as Fauci says we won’t get back to n...] delay=[100]\">\r\n TDI Podcast: Adapting to Moral Hazards (#679)\r\n \r\n \r\n\r\n \"\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"BLOGS\"\"
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Zero Hedge
\r\n
Oct-12
Trump Seeking Last Minute Pre-Election Nuke Deal With Putin\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 23:40\r\n\r\n The clock is winding down on the last major arms control agreement between Moscow and Washington, after prior late Cold War ...
] delay=[100]\">\r\n Trump Seeking Last Minute Pre-Election Nuke Deal With Putin\r\n \r\n \r\n \r\n Oct-12\r\n Australian Media Finally Calls Out Davos 'Great Reset' Agenda\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 23:20\r\n\r\n Via 21stCenturyWire.com,\r\n\r\nThis week, Sky News Australia contributor and former Australian Senator Cory Bernardi, tore op...] delay=[100]\">\r\n Australian Media Finally Calls Out Davos \"Great Reset\" Agenda\r\n \r\n \r\n \r\n Oct-12\r\n Watch: Kim Jong Un Wipes Away Tears During Rare 'Apology' For Litany Of North's Hardships\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 23:00\r\n\r\n The big news out of North Korea this past weekend was Saturday's military parade marking the 7...] delay=[100]\">\r\n Watch: Kim Jong Un Wipes Away Tears During Rare 'Apology' For Litany Of North's Hardships\r\n \r\n \r\n \r\n Oct-12\r\n Coup Who?\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 22:40\r\n\r\n Authored by Mark Hemingway via AmericanMind.org,\r\n\r\nScaremongering Democrats protest too much.\r\n\r\n\r\n\r\nIn August, two retired military officers published a piece in Defense On...] delay=[100]\">\r\n Coup Who?\r\n \r\n \r\n \r\n Oct-12\r\n China Says It Foiled Major Taiwan Spy Network As Taipei Denounces 'Malicious Political Stunt'\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 22:20\r\n\r\n In what could be used as a possible pretext for war or at least as huge leverage amid incr...] delay=[100]\">\r\n China Says It Foiled Major Taiwan Spy Network As Taipei Denounces \"Malicious Political Stunt\"\r\n \r\n \r\n \r\n Oct-12\r\n Azerbaijani Military Destroys Armenian S-300s As Humanitarian Ceasefire Nears Collapse\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 22:00\r\n\r\n Submitted by SouthFront,\r\n\r\nThe Armenian-Azerbaijani war in the Nagorno-Karabakh region does not ...] delay=[100]\">\r\n Azerbaijani Military Destroys Armenian S-300s As Humanitarian Ceasefire Nears Collapse\r\n \r\n \r\n \r\n Oct-12\r\n No Stimulus, No Problem: One Bank Sees 'No Armageddon' Without A New Stimulus Deal\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:40\r\n\r\n In recent weeks, many have opined - this website included  - that with the US economy careening into ...] delay=[100]\">\r\n No Stimulus, No Problem: One Bank Sees \"No Armageddon\" Without A New Stimulus Deal\r\n \r\n \r\n \r\n Oct-12\r\n SoftBank's Vision Fund Plans SPAC, Vows It Is Not Behind Nasdaq Melt-up\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:20\r\n\r\n SPACs (it stands for Special Purpose Acquisition Vehicle) raised a ton of money over the summer as the craze tha...] delay=[100]\">\r\n SoftBank's Vision Fund Plans SPAC, Vows It Is Not Behind Nasdaq Melt-up\r\n \r\n \r\n \r\n Oct-12\r\n Johnson & Johnson Latest To Halt COVID-19 Vaccine Trial Over Unspecified Illness\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:14\r\n\r\n Yet another high-profile Phase 3 vaccine trial has been temporarily halted after one of the participant...] delay=[100]\">\r\n Johnson & Johnson Latest To Halt COVID-19 Vaccine Trial Over Unspecified Illness\r\n \r\n \r\n \r\n Oct-12\r\n NBA Finals Game 6 Saw Ratings Crash 66% Despite Being Season Finale\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:00\r\n\r\n The last game of the NBA Finals - arguably the most important game of any NBA season - posted ratings that were abou...] delay=[100]\">\r\n NBA Finals Game 6 Saw Ratings Crash 66% Despite Being Season Finale\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Howard Lindzon
\r\n
Oct-12
As a reminder, Marketsmith (by Investor’s Business Daily) is now a sponsor of the weekly show. All the charts you have been seeing in the videos and will continue to see are from Marketsmith. They are offering my readers a three week trial for $19.95...
] delay=[100]\">\r\n Momentum Monday – Blue Wave?\r\n \r\n \r\n \r\n Oct-10\r\n What a long strange trip COVID has been from my small footprint of Phoenix, Coronado and a few days in LA. I have still not been on a plane since February.\nI was out for a socially distanced lunch in San Diego today with an old friend and finally ca...] delay=[100]\">\r\n Catching Up On All Things SPACs and Collectibles\r\n \r\n \r\n \r\n Oct-09\r\n Raoul Pal the founder of Real Vision turned the tables and interviewed me for his new series ‘Has Everything Changed’. \nI had the chance to riff on many of my favorite investing themes and trends explaining my digital optimism and the FinTAM explosi...] delay=[100]\">\r\n Has Everything Changed? My Digital Optimism Despite Harsh Economic Realities – My Interview With Raoul Pal of Real Vision\r\n \r\n \r\n \r\n Oct-08\r\n I was introduced to Kelvin Beachum by Ryan Nece because we were b0th investors living in Phoenix. It just turns out that Kelvin and Ryan are also NFL football players (Kelvin is playing for the Cardinals this year…Ryan is retired and investing full ...] delay=[100]\">\r\n Kelvin Beachum Joins Me On ‘Panic With Friends’ and We Talk Investing and Life as an NFL Player During a Pandemic\r\n \r\n \r\n \r\n Oct-07\r\n Last week I had my friend Jeff Richards (GGV Ventures) on my new Zoom show ‘Investing for Profit and Joy’. He had a great riff on many of the stocks and trends he finds interesting but I most loved his take on the reboot of the US Economy.\nYou can w...] delay=[100]\">\r\n The Reboot Of The Us Economy Will Be Built Around Small Business. The Small Business Reboot Will Be Built On Technology\r\n \r\n \r\n \r\n Oct-06\r\n The fund of fund structure and strategy has a bad rap from the hedge fund world. The returns for hedge funds have lagged the S&P returns so you can imagine a fund of fund structure with fees on fees is not a popular strategy with investors. In ...] delay=[100]\">\r\n The Fund Of Fund and Its Role In Venture Capital – A ‘Panic With Friends’ With Patrick O’Connor Of Summit Peak Investments\r\n \r\n \r\n \r\n Oct-05\r\n Good Monday morning everyone.\nBefore get started…three cheers for Apple TV…which NOBODY expected to be cranking out great content in 2020. My three favorite shows of the year are all on Apple TV – Defending Jacob, Tehran and Ted Lasso.\nOnwards…\nThe...] delay=[100]\">\r\n Momentum Monday – Give Me A Shot of Dexamethasone and Stimulus Please and Put It On The Next Generation\r\n \r\n \r\n \r\n Oct-04\r\n A few weeks back I wrote about the finTAM explosion across the globe. Alpaca is at the center of it. Today, Alpaca’s founder Yoshi Yokokawa joins me to talk about the company and the opportunity.\nYou can listen to the podcast here on Spotify, or th...] delay=[100]\">\r\n Alpaca Founnder Yoshi Yokokawa Joins Me On ‘Panic With Friends’ To Explain Their Commission Free Stock Trading API\r\n \r\n \r\n \r\n Oct-03\r\n Happy Saturday everyone. I took the day off of writing but I was catching up in the studio making podcasts with Knut and recording zoom video conversations with some of my favorite investors.\nThere is this old saying in the markets that stocks are s...] delay=[100]\">\r\n Stocks are stories, Bonds are Math – No Wonder SPACS are flying And Disney Is Lagging…And Jeff Richards On The Digital Rebooting Of The American Economy\r\n \r\n \r\n \r\n Oct-01\r\n I have written about The Fintam Explosion which has been driven in part by the API economy.\nThere is an exploding API economy which is now a key part in the reboot of the American economy.\nThis piece titled ‘The Third Party API Economy – How To Give ...] delay=[100]\">\r\n The Creator Economy and The API Economy\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Vantage Point Trading
\r\n
Oct-12
Inflation refers to the price changes over a period of time. Two types of inflation exist – expected and unexpected. Out of the two, the unexpected inflation has higher costs as it is usually the result of an exogenous shock (e.g., oil crisis in the ...
] delay=[100]\">\r\n Helicopter Money – Myth and Reality\r\n \r\n \r\n \r\n Oct-12\r\n Digitalization is a major theme – no doubt about it. Big tech firms from the United States dominate the world and quickly became the largest corporations. Nasdaq 100, the stock market index that tracks the technology companies surged to a new all-tim...] delay=[100]\">\r\n Bitcoin and the Rise of Fintech\r\n \r\n \r\n \r\n Oct-09\r\n One of the most expected energy reports in the world is the OPEC (Organization of Petroleum Exporting Countries) World Oil Outlook. An annual publication, it offers a glimpse into the energy markets. \nSince oil takes the largest share of the global e...] delay=[100]\">\r\n 2020 World Oil Outlook Is Here\r\n \r\n \r\n \r\n Oct-09\r\n One of the most incredible stock market comebacks in history happened in 2020. As the world’s economies plunged into the unknown, the U.S. stock market, and soon after, other markets, climbed from the hole and outperformed in a spectacular mann...] delay=[100]\">\r\n Two Decades of Changes at Top Five Corporate America\r\n \r\n \r\n \r\n Oct-08\r\n J.P. Morgan is often recognized as one of the biggest bankers of all time. Under his watch, the House of Morgan became the most influential bank in the United States and Britain, having businesses in other parts of the world too.\nIn times of crisis, ...] delay=[100]\">\r\n It Is Time To Fear Debt Levels?\r\n \r\n \r\n \r\n Oct-08\r\n One of the most interesting metrics to watch when interpreting the effects of an economic recession is the number of bankruptcies it provokes. Businesses come and go on a regular basis, even during normal economic times.\nIt is when the economy strugg...] delay=[100]\">\r\n Bankruptcies – A Contrarian Bullish Signal?\r\n \r\n \r\n \r\n Oct-07\r\n In 2015, the Swiss National Bank (SNB) gave way to the 1.20 fixed exchange rate on the EURCHF cross. For several years, it kept selling CHF, constantly intervening in the FX market. \nAs such, January 2015 still remains in history as the month when th...] delay=[100]\">\r\n Swiss National Bank FX Interventions Bigger Than in 2015\r\n \r\n \r\n \r\n Oct-07\r\n The Australian dollar keeps hovering above the 0.7 level against its American peer and trades with little or no direction. The highest it has been during the coronavirus crisis was just shy above 0.7400, on the back of the Fed’s efforts to improve th...] delay=[100]\">\r\n What Is New For the Australian Dollar?\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Abnormal Returns
\r\n
Oct-12
Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...
] delay=[100]\">\r\n Monday links: understanding ‘irrational behavior’\r\n \r\n \r\n \r\n Oct-12\r\n Mondays are all about financial adviser-related links here at Abnormal Returns. You can check out last week’s links including a look at...] delay=[100]\">\r\n Adviser links: proactive communications\r\n \r\n \r\n \r\n Oct-11\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">\r\n Sunday links: when the stock market tanks\r\n \r\n \r\n \r\n Oct-11\r\n Thanks for checking in with us this weekend. Here are the most clicked on items on Abnormal Returns for the week ended...] delay=[100]\">\r\n Top clicks this week on Abnormal Returns\r\n \r\n \r\n \r\n Oct-10\r\n Saturdays are the day we catch up with all the non-finance related stuff we didn’t get to during the week. You can...] delay=[100]\">\r\n Saturday links: the rest of your life\r\n \r\n \r\n \r\n Oct-10\r\n A linkfest dedicated to the coronavirus pandemic is now a weekly feature here on Abnormal Returns. You can read last week’s edition...] delay=[100]\">\r\n Coronavirus links: a very clear signal\r\n \r\n \r\n \r\n Oct-09\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">\r\n Friday links: the difficult work\r\n \r\n \r\n \r\n Oct-09\r\n Fridays are all about podcast links here at Abnormal Returns. You can check out last week’s links including a discussion about big...] delay=[100]\">\r\n Podcast links: upside-down markets\r\n \r\n \r\n \r\n Oct-08\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">\r\n Thursday links: a simple story of brand value\r\n \r\n \r\n \r\n Oct-08\r\n Thursdays are now all about longform links on Abnormal Returns. You can check out last week’s linkfest including a look at how...] delay=[100]\">\r\n Longform links: complexity is a constant\r\n \r\n \r\n\r\n \"\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\" \"\"
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Seeking Alpha
\r\n
Oct-11
Tulips To Tesla
] delay=[100]\">\r\n Tulips To Tesla\r\n \r\n \r\n \r\n Oct-10\r\n Go Big Or Go Home] delay=[100]\">\r\n Go Big Or Go Home\r\n \r\n \r\n \r\n Oct-10\r\n EPR Properties: Live And Let Die] delay=[100]\">\r\n EPR Properties: Live And Let Die\r\n \r\n \r\n \r\n Oct-10\r\n Annaly: 9% Yield Better Than 7% Yield Preferred Share] delay=[100]\">\r\n Annaly: 9% Yield Better Than 7% Yield Preferred Share\r\n \r\n \r\n \r\n Oct-10\r\n Markets Enter New Phase] delay=[100]\">\r\n Markets Enter New Phase\r\n \r\n \r\n \r\n Oct-09\r\n How A Federal Drilling Permit Ban Could Impact The Williams Companies And MPLX LP] delay=[100]\">\r\n How A Federal Drilling Permit Ban Could Impact The Williams Companies And MPLX LP\r\n \r\n \r\n \r\n Oct-09\r\n Ares Capital Finally A Buy: Did You Miss It?] delay=[100]\">\r\n Ares Capital Finally A Buy: Did You Miss It?\r\n \r\n \r\n \r\n Oct-09\r\n Visa: Continuing Recovery Brings Double-Digit Annualised Return] delay=[100]\">\r\n Visa: Continuing Recovery Brings Double-Digit Annualised Return\r\n \r\n \r\n \r\n Oct-09\r\n Solid Bargain At An Apartment Near You] delay=[100]\">\r\n Solid Bargain At An Apartment Near You\r\n \r\n \r\n \r\n Oct-09\r\n CII: Tech-Heavy Portfolio Yielding 6.74%] delay=[100]\">\r\n CII: Tech-Heavy Portfolio Yielding 6.74%\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
market folly
\r\n
Sep-28
The U.S. Securities and Exchange Commission (SEC) has proposed amendments to 13F filings.  Currently, investment managers with holdings of US securities totaling $100 million or more are required to file a 13F each quarter.  The proposal ...
] delay=[100]\">\r\n Reasons to Oppose the SEC's New 13F Proposal\r\n \r\n \r\n \r\n Aug-19\r\n The new Q2 issue of our hedge fund newsletter is now available.  Subscribers please login at www.hedgefundwisdom.com to download it.Inside the New Q2 Issue:- Reveals the latest portfolios of 25 top hedge fund managers: David Tepper, Seth Klarma...] delay=[100]\">\r\n Updated Top Hedge Fund Holdings: New Q2 Issue Now Available\r\n \r\n \r\n \r\n May-20\r\n The new Q1 issue of our hedge fund newsletter is now available.  This portfolio snapshot coincides directly with the pandemic market sell-off, which means this is a chance to see what stocks top investors have long had on their watchlists that t...] delay=[100]\">\r\n What Hedge Funds Bought & Sold in the Volatility: New Q1 Issue Just Released\r\n \r\n \r\n \r\n Feb-20\r\n The new Q4 issue of our hedge fund newsletter is now available.  It reveals the latest portfolios of 25 top hedge funds and also features summaries of 2 stocks that Dr. Michael Burry (of The Big Short fame) has been buying.Subscribers please log...] delay=[100]\">\r\n New Hedge Fund Newsletter Just Released\r\n \r\n \r\n \r\n Dec-09\r\n We're posting up notes from the Sohn London investment conference.  Next up is Per Johansson of Bodenholm Capital who presented a short of Koenig and Bauer (GER:SKBX) and a long of LivaNova (NAS:LIVN).Per Johansson's Sohn London Conference Prese...] delay=[100]\">\r\n Per Johansson Short Koenig and Bauer, Long LivaNova: Sohn London Conference\r\n \r\n \r\n \r\n Dec-09\r\n Below are links to notes from the recent Sohn London Investment Conference 2019 which featured investment managers sharing ideas to benefit charity.Sohn London Conference Notes 2019- Brian Baldwin (Trian Fund Management): Long Ferguson - James Hanbur...] delay=[100]\">\r\n Notes From Sohn London Investment Conference 2019\r\n \r\n \r\n \r\n Dec-09\r\n We're posting up notes from the Sohn London investment conference.  Next up is Brian Baldwin of Trian Fund Management who presented a long of Ferguson (LON: FERG).Brian Baldwin's Sohn London Conference PresentationTrian disclosed a 5.2% stake in...] delay=[100]\">\r\n Brian Baldwin (Trian) Long Ferguson: Sohn London Conference\r\n \r\n \r\n \r\n Dec-09\r\n We're posting up notes from the Sohn London investment conference.  Next up is James Hanbury of Odey Asset Management who presented a long of Plus500 (LONG:PLUS).James Hanbury's Sohn London Conference PresentationLong Plus500 (LON: PLUS)Plus500 ...] delay=[100]\">\r\n James Hanbury (Odey) Long Plus500: Sohn London Conference\r\n \r\n \r\n \r\n Dec-09\r\n We're posting up notes from the Sohn London investment conference.  Next up is Jason Ader of SpringOwl Asset Management who presented a long of Playtec (LON: PTEC).Jason Ader's Sohn London Conference PresentationLong Playtec (LON: PTEC)Spring Ow...] delay=[100]\">\r\n Jason Ader Long Playtec: Sohn London Conference\r\n \r\n \r\n \r\n Dec-09\r\n We're posting up notes from the Sohn London investment conference.  Next up is Catherine Berjal of CIAM who presented a long of Accor (EPA: AC).Catherine Berjal's Sohn London Conference PresentationLong Accor (EPA: AC)CIAM is an activist but Acc...] delay=[100]\">\r\n Catherine Berjal Long Accor: Sohn London Conference\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Fallond Stock Picks
\r\n
Oct-12
Base development continued across the board as all lead indices posted gains. The biggest gain came with the Nasdaq as it moved ever closer to its last swing high in September. Technicals for this index are all bullish, with the index making relative...
] delay=[100]\">\r\n Indices Accelerate Gains\r\n \r\n \r\n \r\n Oct-11\r\n Another day when Small Caps maintained their run of good form by closing above the August swing high, but buying volume was down on Thursdays. Technicals remain net bullish and have been since before the mini breakout in October. The only downside wa...] delay=[100]\">\r\n Russell 2000 Closes Week At New Swing High\r\n \r\n \r\n \r\n Oct-07\r\n Yesterday's selling was a flash in the pan quickly undone by today's trading. The Russell 2000 sharply advanced, taking out the August swing high with technicals all firmly in the green. The only negative was the lower volume, but this is a marked ad...] delay=[100]\">\r\n Russell 2000 Continues To Perform Well\r\n \r\n \r\n \r\n Oct-05\r\n The Russell 2000 had shown the most promise into last week's close and followed that with a move past the most recent swing high - albeit on light volume. In doing so, it returned above its 50-day MA and brings into play the August high as the next c...] delay=[100]\">\r\n Markets Shrug Off Trump's Covid-19 Diagnosis\r\n \r\n \r\n \r\n Oct-04\r\n All indices suffered selling on Friday, although selling volume was light, but given the Trump announcement after the Friday close it's hard to see anything but selling on Monday. The context to the selling will be a bounce that has struggled to reac...] delay=[100]\">\r\n Sellers Control Friday's Action - But Monday Will Be The Real Test\r\n \r\n \r\n \r\n Sep-30\r\n It was looking good for the indices in early m the day, but by the close indices weren't able to hold on to their gains. However, all indices finished in positive territory and any (small) upside tomorrow would likely be sufficient to maintain moment...] delay=[100]\">\r\n Markets attempt to rally but fall short by the close\r\n \r\n \r\n \r\n Sep-28\r\n Friday's rally offered a promising open with a gap higher, but there was no follow through on these gains. In the case of the Nasdaq, there was a close above the 50-day which also picked up the 20-day MA but if the gap is to register as a true '...] delay=[100]\">\r\n Bounce stalls despite morning gaps\r\n \r\n \r\n \r\n Sep-27\r\n An easy headline which has played out as true, although the same bounce occurred in the Nasdaq well before the measured move target is reached. In the case of the S&P, the measured move target is above the 200-day MA - a typical support level and...] delay=[100]\">\r\n S&P Bounces At Measured Move Target\r\n \r\n \r\n \r\n Sep-23\r\n Sellers again stamped their authority on markets with significant pushes lower which completely erased the weak buying of Tuesday. Markets remain on course to reach their measured move targets.  The index closest to doing so is the S&P. ...] delay=[100]\">\r\n Selling Accelerates; Measured Move Targets Still In Play\r\n \r\n \r\n \r\n Sep-21\r\n Indices continued to decline with measured move targets for the S&P and Nasdaq still in play. However, the real damage was done in the Russell 2000. The index made a clean break below its 50-day MA on a gap down with new 'sell' triggers in Stocha...] delay=[100]\">\r\n Selling Continues Across Indices\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n
Calculated Risk
\r\n
Oct-12
Tuesday:• At 8:30 AM ET, The Consumer Price Index for September from the BLS. The consensus is for a 0.2% increase in CPI, and a 0.2% increase in core CPI.
] delay=[100]\">\r\n Tuesday: CPI\r\n \r\n \r\n \r\n Oct-12\r\n The US is now mostly reporting 700 thousand to 1 million tests per day. Based on the experience of other countries, the percent positive needs to be well under 5% to really push down new infections (probably close to 1%), so the US still needs to i...] delay=[100]\">\r\n October 12 COVID-19 Test Results\r\n \r\n \r\n \r\n Oct-12\r\n Note: This is as of October 4th.From the MBA: Share of Mortgage Loans in Forbearance Declines to 6.32%The Mortgage Bankers Association’s (MBA) latest Forbearance and Call Volume Survey revealed that the total number of loans now in forbearance decrea...] delay=[100]\">\r\n MBA Survey: \"Share of Mortgage Loans in Forbearance Declines to 6.32%\"\r\n \r\n \r\n \r\n Oct-12\r\n Way back in 2005, I posted a graph of the Real Estate Agent Boom. Here is another update to the graph.The graph shows the number of real estate licensees in California.The number of agents peaked at the end of 2007 (housing activity peaked in 2005, ...] delay=[100]\">\r\n Update: Real Estate Agent Boom and Bust\r\n \r\n \r\n \r\n Oct-12\r\n Yesterday I posted some recent demographic data U.S. Demographics: Largest 5-year cohorts, and Ten most Common Ages in 2019A decade ago, a large cohort was moving into the 20 to 29 year old age group (a key age group for renters) and I was very ...] delay=[100]\">\r\n Demographics: Renting vs. Owning\r\n \r\n \r\n \r\n Oct-12\r\n These indicators are mostly for travel and entertainment - some of the sectors that will recover very slowly.----- Airlines: Transportation Security Administration -----The TSA is providing daily travel numbers. Click on graph for larger image.This d...] delay=[100]\">\r\n Seven High Frequency Indicators for the Economy\r\n \r\n \r\n \r\n Oct-11\r\n Weekend:• Schedule for Week of October 11, 2020Monday:• Columbus Day Holiday: Banks will be closed in observance of Columbus Day. The stock market will be open. No economic releases are scheduled.From CNBC: Pre-Market Data and Bloomberg futures S&...] delay=[100]\">\r\n Sunday Night Futures\r\n \r\n \r\n \r\n Oct-11\r\n The US is now mostly reporting 700 thousand to 1 million tests per day. Based on the experience of other countries, the percent positive needs to be well under 5% to really push down new infections (probably close to 1%), so the US still needs to i...] delay=[100]\">\r\n October 11 COVID-19 Test Results\r\n \r\n \r\n \r\n Oct-11\r\n IMPORTANT NOTE: The data below is based on the Census 2019 estimates. Housing economist Tom Lawler has pointed out some questions about earlier Census estimates, see: Lawler: 'New Long-Term Population Projections Show Slower Growth than Previous Pr...] delay=[100]\">\r\n U.S. Demographics: Largest 5-year cohorts, and Ten most Common Ages in 2019\r\n \r\n \r\n \r\n Oct-10\r\n The US is now mostly reporting 700 thousand to 1 million tests per day. Based on the experience of other countries, the percent positive needs to be well under 5% to really push down new infections (probably close to 1%), so the US still needs to i...] delay=[100]\">\r\n October 10 COVID-19 Test Results\r\n \r\n \r\n \r\n \r\n \r\n
\n
\r\n
\r\n
\r\n affiliate\r\n \r\n advertise\r\n \r\n contact\r\n \r\n privacy\r\n \r\n help
Do not sell my personal information\r\n
\r\n Quotes delayed 15 minutes for NASDAQ, and 20 minutes for NYSE and AMEX.\r\n
\r\n Copyright © 2007-2020 FINVIZ.com. All Rights Reserved.\r\n
\r\n \r\n \n\n\n
\r\n
\r\n\t\t\t \r\n \r\n \r\n\r\n
\r\n\t\t\t

Upgrade your FINVIZ experience

\r\n

\r\n Join thousands of traders who make more informed decisions with our premium features.\r\n Real-time quotes, advanced visualizations, backtesting, and much more.\r\n

\r\n Learn more about FINVIZ*Elite\r\n
\r\n
\r\n
\n\n" + body: "\n\n\nStock Market News & Blogs\n\r\n + \ \n\n\n\n\n\n\n\r\n \r\n \r\n \r\n \r\n \n\n\n\n\n\r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n \r\n + \ \r\n + \ \r\n + \ \r\n \r\n \n\r\n + \ \r\n
Your + browser is no longer supported. Please, upgrade your browser.
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n + \ \r\n
\r\n \r\n + \
\r\n \r\n \r\n + \ \r\n \r\n + \ \r\n \r\n + \ \r\n
\r\n + \ \r\n + \
\r\n
\r\n \r\n + \ \r\n + \
\r\n
\r\n + \
\r\n
\r\n
\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n
\r\n \r\n
HomeNewsScreenerMapsGroupsPortfolioInsiderFuturesForexCryptoBacktestsElite\r\n + \ \r\n + \ \r\n Help\r\n + \ \r\n LoginRegister
\r\n \r\n + \ \r\n \r\n
\n\r\n
\r\n + \ \r\n Missing + your favorite blog here?\r\n \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n
\r\n \"\"\r\n \r\n + \ NEWS\r\n \r\n + \ \r\n
\r\n\r\n \r\n \r\n + \ \r\n \r\n + \ \r\n \r\n + \
\r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Bloomberg
\r\n
Feb-21
Stocks to Extend Drop + on Deepening Ukraine Tension: Markets Wrap
] delay=[100]\">\r\n + \ Stocks to Extend Drop on Deepening Ukraine + Tension: Markets Wrap\r\n
Feb-21
Oil Soars as Putin Orders + Forces to Separatist Areas of Ukraine
] delay=[100]\">\r\n + \ Oil Soars as Putin Orders Forces to + Separatist Areas of Ukraine\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Stocks to Extend Drop + on Deepening Ukraine Tension: Markets Wrap] delay=[100]\">\r\n + \ Stocks to Extend Drop on Deepening Ukraine + Tension: Markets Wrap\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Elon Musk’s Attorney + Accuses SEC of Leaking Details of Probe] delay=[100]\">\r\n + \ Elon Musk’s Attorney Accuses SEC of + Leaking Details of Probe\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Paraguay Soy Crushers + Plead For Duty-Free Imports to Stay Open] delay=[100]\">\r\n + \ Paraguay Soy Crushers Plead For Duty-Free + Imports to Stay Open\r\n \r\n \r\n \r\n Feb-21\r\n + \ What to Expect in Hong + Kong's Budget From Vouchers to Interest Rates] delay=[100]\">\r\n + \ What to Expect in Hong Kong's Budget + From Vouchers to Interest Rates\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Standard General, Apollo + Near $24-Per-Share Tegna Deal] delay=[100]\">\r\n Standard General, Apollo Near $24-Per-Share + Tegna Deal\r\n \r\n \r\n \r\n Feb-21\r\n + \ Colombia Central Bank + Approval Hits Record Low as Prices Surge] delay=[100]\">\r\n + \ Colombia Central Bank Approval Hits + Record Low as Prices Surge\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ U.K. Outlines Post-Brexit + Reforms to Reduce Burden on Insurers] delay=[100]\">\r\n U.K. Outlines Post-Brexit Reforms to + Reduce Burden on Insurers\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Marathon’s Huge Louisiana + Oil Refinery Rocked by Explosion, Fire] delay=[100]\">\r\n + \ Marathon’s Huge Louisiana Oil Refinery + Rocked by Explosion, Fire\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \
\"\"
\r\n + \ \r\n \r\n \r\n \r\n + \ \r\n
Reuters
\r\n
Feb-21
Investors were bracing + for a torrid day for Russian, Ukrainian and wider global markets when they reopen + on Tuesday, after Vladimir Putin upped the ante in a crisis the West fears could + unleash a major war.
] delay=[100]\">\r\n Markets brace for heavy falls as Russia-Ukraine + crisis escalates\r\n \r\n \r\n \r\n Feb-21\r\n + \ U.S. stock index futures + tumbled on Monday after Russian President Vladimir Putin recognized two breakaway + regions in eastern Ukraine, increasing concerns about a major war.] + delay=[100]\">\r\n Futures drop as Putin recognizes Ukraine + rebel regions\r\n \r\n \r\n \r\n Feb-21\r\n + \ Australian shares are + likely to open lower on Tuesday as investor sentiment remained bleak on worries + of a possible escalation of the conflict in Ukraine in the near future.] + delay=[100]\">\r\n Australia shares set to open lower as + Ukraine worries simmer, NZ gains\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Tech-dominated \\] + delay=[100]\">\r\n 'Growth' stocks still not cheap, cautions + JPMorgan\r\n \r\n \r\n \r\n Feb-21\r\n + \ Global markets are already + pricing chunky geopolitical risks, but there is scope for risk premia to rise + further across all sectors, if a conflict breaks out between Russia and Ukraine, + Goldman Sachs strategists said in a note on Monday.] delay=[100]\">\r\n + \ Markets pricing some geopolitics, but + risk premia can grow further -Goldman\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ A long stretch of below-average + rainfall in Ivory Coast's cocoa regions extended into last week, and farmers + said strong rains were needed to boost the mid-crop, which starts in April.] + delay=[100]\">\r\n Dry spell worries Ivory Coast cocoa + farmers ahead of mid-crop\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Welcome to the home + for real-time coverage of markets brought to you by Reuters reporters. You can + share your thoughts with us at markets.research@thomsonreuters.com] + delay=[100]\">\r\n LIVE MARKETS Volatility is back, along + with Ukraine tensions\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ World stocks hit 3-week + lows, oil rises on Russia-Ukraine fears] delay=[100]\">\r\n + \ World stocks hit 3-week lows, oil rises + on Russia-Ukraine fears\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Luxshare Precision Industry + Co Ltd , an Apple Inc supplier, said on Monday it aims to raise up to 13.5 billion + yuan ($2.13 billion) to fund six projects, including building a production line + for wearable devices.] delay=[100]\">\r\n Apple supplier Luxshare plans share + issue to fund new production lines\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Stock markets in the + Gulf ended mixed on Monday, as oil prices rose on fresh diplomatic efforts to + resolve the Ukraine crisis but banking shares drew profit taking.] + delay=[100]\">\r\n Gulf bourses end mixed, Saudi Aramco + hits record high\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n + \ \r\n \r\n \r\n \r\n \r\n + \
BBC
\r\n
Feb-21
An expected change in + rules in England could hit low-paid workers, the trade union says.
] + delay=[100]\">\r\n Covid rules: Workers face terrible choice, + says TUC\r\n \r\n \r\n \r\n Feb-21\r\n + \ Directors recommend + a new offer from Kuwait-based National Aviation Services to shareholders.] + delay=[100]\">\r\n Menzies Aviation faces £560m takeover + by Kuwaiti rival\r\n \r\n \r\n \r\n Feb-21\r\n + \ Billionaire investor + Carl Icahn says how the animals are reared for products is 'obscene'.] + delay=[100]\">\r\n McDonald's pig policy fight escalates + with board nominations\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ A new investigation + identifies thousands of foreign customers who stashed their money at the bank.] + delay=[100]\">\r\n Credit Suisse denies wrongdoing after + big banking data leak\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ The German airline will + also halt services to Odessa as fears grow over a Russian invasion of Kyiv.] + delay=[100]\">\r\n Lufthansa to suspend flights to Ukraine + capital\r\n \r\n \r\n \r\n Feb-18\r\n + \ Thousands of Porche, + Audi and VW cars on cargo ship to the US which caught fire in the Atlantic Ocean.] + delay=[100]\">\r\n Sports car dreams up in smoke as cargo + ship catches fire\r\n \r\n \r\n \r\n Feb-18\r\n + \ The official list names + 42 online and 35 physical stores, including e-commerce websites of the firms.] + delay=[100]\">\r\n Alibaba and Tencent added to US 'notorious + markets' list\r\n \r\n \r\n \r\n Feb-17\r\n + \ Tony Fernandes was speaking + at the Singapore Airshow, which returned after two years of travel restrictions.] + delay=[100]\">\r\n AirAsia boss calls on governments to + be 'brave' and open borders\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ A judge has ruled that + Donald Trump and two of his children must testify in a New York probe into their + business] delay=[100]\">\r\n Judge rules Donald Trump must testify + in New York investigation\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ The billionaire Tesla + boss says his criticism of the government has drawn 'unrelenting investigation'.] + delay=[100]\">\r\n Elon Musk says US is trying to 'chill' + his free speech\r\n \r\n \r\n\r\n + \ \"\"\r\n \r\n\r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
WSJ
\r\n
Feb-21
Russian Stocks, Ruble, + Lead Global Markets Down, While Oil Rises Amid Ukraine Tensions
] + delay=[100]\">\r\n Russian Stocks, Ruble, Lead Global Markets + Down, While Oil Rises Amid Ukraine Tensions\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ Even as the housing + market booms in the U.S., dreams of online real-estate riches have faded in + the stock market.] delay=[100]\">\r\n Online Real Estate Isn't Worth the Chance\r\n + \ \r\n \r\n \r\n Feb-21\r\n + \ Sales of corporate loans + and derivatives tied to the Secured Overnight Financing Rate have picked up, + with Crocs among recent issuers.] delay=[100]\">\r\n SOFR Leads Race to Replace Libor as + Benchmark Rate\r\n \r\n \r\n \r\n Feb-21\r\n + \ Even as the stock market + struggles to gain momentum, investors concerned about interest rates are finding + there are few other attractive options to put their cash to work.] + delay=[100]\">\r\n Exodus From Bond Funds Is Mitigating + Stock Market's Swoon\r\n \r\n \r\n \r\n Feb-21\r\n + \ Investors had hoped + that the new year would bring a reprieve from the regulatory crackdown that + punished shares in 2021. Those hopes may have been premature.] + delay=[100]\">\r\n Meituan Shows China Tech Isn't Delivering + Yet\r\n \r\n \r\n \r\n Feb-20\r\n + \ The precious metal has + reached eight-month highs despite expectations for interest-rate increases.] + delay=[100]\">\r\n Russia-Ukraine Tensions Power Gains + for Gold\r\n \r\n \r\n \r\n Feb-20\r\n + \ Fannie Mae and Freddie + Mac are asking mortgage lenders more questions about safety and structural soundness + of condos and co-op buildings, slowing down loan approvals.] + delay=[100]\">\r\n Surfside Tower Collapse Makes Buying + Condos More Complicated\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ Banks worried about + risk are turning away the owners of independent ATMs, a lifeline to the underbanked.] + delay=[100]\">\r\n Gas-Station ATMs Are a Banking Battleground\r\n + \ \r\n \r\n \r\n Feb-18\r\n + \ The regulator filed + a letter with the court saying its engagement with Tesla and its CEO is in line + with a 2018 settlement.] delay=[100]\">\r\n SEC Counters Elon Musk's Accusation + of Harassment\r\n \r\n \r\n \r\n Feb-18\r\n + \ U.S. stocks fell after + the Dow Jones Industrial Average suffered its steepest one-day loss of 2022, + while Brent crude oil prices fell.] delay=[100]\">\r\n Stocks End Lower as Ukraine Tensions + Mount\r\n \r\n \r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
CNBC
\r\n
Feb-21
Stock futures fell Monday + night, as traders continue to monitor brewing tensions between Russia and Ukraine.
] + delay=[100]\">\r\n Dow futures drop more than 400 points + as tensions between Russia and Ukraine brew\r\n \r\n + \ \r\n \r\n Feb-20\r\n + \ Clients of the second-biggest + Swiss bank included an international cast of unsavory characters, according + to media reports.] delay=[100]\">\r\n Massive Credit Suisse leak reportedly + reveals possible criminal ties among 18,000 accounts\r\n \r\n + \ \r\n \r\n Feb-19\r\n + \ If the U.S. forces Chinese + companies to delist from New York, new rules from Beijing further complicates + their path to raising money in public markets abroad.] delay=[100]\">\r\n + \ Some U.S.-listed Chinese stocks will + need Beijing's approval to stay public in other overseas markets\r\n \r\n + \ \r\n \r\n Feb-18\r\n + \ These are the stocks + posting the largest moves in midday trading.] delay=[100]\">\r\n + \ Stocks making the biggest moves midday: + Roku, DraftKings, Shake Shack, Bloomin' Brands and more\r\n \r\n + \ \r\n \r\n Feb-18\r\n + \ Fed officials won't + be able to trade stocks and bonds — as well as cryptocurrencies — under new + rules that became formal Friday.] delay=[100]\">\r\n Fed approves rules banning its officials + from trading stocks, bonds and also cryptocurrencies\r\n \r\n + \ \r\n \r\n Feb-18\r\n + \ These are the stocks + posting the largest moves before the bell.] delay=[100]\">\r\n + \ Stocks making the biggest moves premarket: + DraftKings, Roku, Deere and others\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ Chinese President Xi + Jinping told top leaders in early December to speed up work on new laws for + the tech sector, according to a speech published Wednesday.] + delay=[100]\">\r\n No reversal on China's tech crackdown + in sight as Xi calls for more work on laws\r\n \r\n + \ \r\n \r\n Feb-17\r\n + \ Wall Street suffered + a steep sell-off on Wednesday with the Dow falling more than 600 points for + its biggest daily drop since end of November.] delay=[100]\">\r\n + \ Stock futures are flat after Dow suffers + its worst day of the year\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ See which stocks are + posting big moves after the bell.] delay=[100]\">\r\n Stocks making the biggest moves after + hours: Roku, Shake Shack, Sunrun & more\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ St. Louis Fed President + James Bullard cautioned that without action on interest rates, inflation could + become an even more serious problem.] delay=[100]\">\r\n Fed's Bullard says inflation 'could + get out of control' so action is needed now\r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \
\"\"
\r\n \r\n \r\n \r\n \r\n + \ \r\n
The New York Times
\r\n
Feb-21
Countries that depend + on the region’s rich supply of energy, wheat, nickel and other staples could + feel the pain of price spikes.
] delay=[100]\">\r\n What’s at Stake for the Global Economy + if Russia Invades Ukraine\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ High energy prices in + Europe are upending people’s lives. While some are installing solar panels, + others are stoking their wood-burning stoves.] delay=[100]\">\r\n + \ How Europeans Are Responding to Exorbitant + Gas and Power Bills\r\n \r\n \r\n \r\n Feb-21\r\n + \ Lawsuits from white + farmers have blocked $4 billion of pandemic aid that was allocated to Black + farmers in the American Rescue Plan.] delay=[100]\">\r\n Black Farmers Fear Foreclosure as Debt + Relief Remains Frozen\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ “Everything was a lie,” + said one woman lured into a recent scam.] delay=[100]\">\r\n + \ Crypto Scammers Target Dating Apps\r\n + \ \r\n \r\n \r\n Feb-20\r\n + \ While oil traders keep + an eye on Russia, they’re also looking to a possible nuclear deal with Iran + that could help add to global supplies.] delay=[100]\">\r\n + \ Oil Prices Climb as Russia Menaces Ukraine\r\n + \ \r\n \r\n \r\n Feb-20\r\n + \ The billionaire investor + has proposed two candidates for the company’s board.] delay=[100]\">\r\n + \ Carl Icahn Pushes McDonald’s to Change + Way It Sources Its Pork\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ Leaked data on more + than 18,000 accounts shows that the Swiss bank missed or ignored red flags.] + delay=[100]\">\r\n Vast Leak Exposes How Credit Suisse + Served Strongmen and Spies\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ In Spokane, Wash., home + prices jumped 60 percent in the past two years. The increase is fueled by buyers + fleeing the boom in cities like Austin. Who will have to flee next?] + delay=[100]\">\r\n The Next Affordable City Is Already + Too Expensive\r\n \r\n \r\n \r\n Feb-19\r\n + \ Several claims have + circulated on social media, often after they are mentioned by Russian officials + or news media.] delay=[100]\">\r\n Russia has been laying groundwork online + for a ‘false flag’ operation, misinformation researchers say.\r\n \r\n + \ \r\n \r\n Feb-19\r\n + \ States are lifting mask + mandates, and demand is bouncing back quickly after Omicron. Supply constraints + are proving harder to escape.] delay=[100]\">\r\n Pandemic’s Economic Impact Is Easing, but Aftershocks + May Linger\r\n \r\n \r\n\r\n + \ \"\"\r\n \r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
MarketWatch
\r\n
Feb-21
What a Russian invasion + of Ukraine would mean for markets as Putin orders troops to separatist regions
] + delay=[100]\">\r\n What a Russian invasion of Ukraine would + mean for markets as Putin orders troops to separatist regions\r\n \r\n + \ \r\n \r\n Feb-18\r\n + \ U.S. stocks closed lower + Friday and booked a second week in a row of declines, as investors kept an eye + on Russia and Ukraine, fearing an outbreak of war. President Biden is due to + speak shortly after the closing bell on Russia tensions, with a focus...] + delay=[100]\">\r\n Dow ends 230 points lower Friday, stocks + book second week in a row of declines\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ A Biden administration + official on Friday put the blame on Russia for a cyberattack that hit Ukrainian + banks earlier this week. 'We believe that the Russian government is responsible + for widescale cyberattacks on Ukrainian banks this week,' Deputy Na...] + delay=[100]\">\r\n White House says Russia to blame for + cyberattacks on Ukraine\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ Oil futures declined + on Friday, widening their weekly loss to more than 2%. A potential of Iranian + crude to the market has led to some 'nervousness ahead of the march towards + $100 a barrel,' leading oil prices to their first negative week since mid-D...] + delay=[100]\">\r\n U.S. oil futures post losses for the + session and week\r\n \r\n \r\n \r\n Feb-18\r\n + \ Gold futures fell on + Friday to settle below the $1,900 mark, but still gained just over 3% for the + week. While 'war fears dominate the headlines, I believe the main driving force + behind this rally remains rising inflation,' said Peter Spina, presiden...] + delay=[100]\">\r\n Gold futures settle below $1,900, but + gain for the week\r\n \r\n \r\n \r\n Feb-18\r\n + \ Baker Hughes on Friday + reported that the number of active U.S. rigs drilling for oil was up by four + to 520 this week. That followed a climb of 19 oil rigs the week before, Baker + Hughes data show. The total active U.S. rig count, which includes those...] + delay=[100]\">\r\n Baker Hughes data show U.S. oil-drilling + rig count up a 4th straight week\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ Goldman Sachs Group + Inc. CEO David Solomon on Thursday said 2022 will mark a shift from low interest + rates and tame inflation to tighter borrowing conditions and above-trend inflation. + In his remarks at the Credit Suisse Financial Services Forum, So...] + delay=[100]\">\r\n Goldman Sachs CEO braces for above trend + inflation\r\n \r\n \r\n \r\n Feb-18\r\n + \ President Joe Biden + will speak at 4 p.m. Eastern on the U.S.'s 'continued efforts to pursue deterrence + and diplomacy, and Russia's buildup of military troops on the border of Ukraine,' + the White House said Friday. The speech is scheduled after a sepa...] + delay=[100]\">\r\n Biden to speak on Russia and Ukraine + after call with Transatlantic leaders\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ Shares of General Electric + Co. took a dive in morning trading Friday, swinging from a slight gain to a + 4.3% loss, after the industrial conglomerate disclosed that supply chain challenges + will put pressure on growth, profit and free cash flow through...] + delay=[100]\">\r\n GE stock dives into the red after investor + update on supply chain pressure\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ Existing-home sales + increased by nearly 7% between December and January, hitting a seasonally-adjusted, + annual rate of 6.5 million, the National Association of Realtors said Friday. + Economists polled by MarketWatch expected the pace of home sales to ...] + delay=[100]\">\r\n Existing-home sales defy expectations, + rising higher to kick off 2022\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \
\"\"
\r\n + \ \r\n \r\n \r\n \r\n + \ \r\n
Fox Business
\r\n
Feb-21
Roasted coffee prices + haven't spiked this much since 2012. Wholesale roasters are already trying to + manage those increasing costs.
] delay=[100]\">\r\n Coffee + prices skyrocketing for customers and roasters: ‘Everybody’s basically taking + a hit’\r\n \r\n \r\n \r\n Feb-21\r\n + \ Graham made the call + in a tweet thread after Putin’s national address in which he recognized the + independence of the Donetsk People's Republic and Luhansk People's Republic + areas of Ukraine.] delay=[100]\">\r\n Graham calls to 'destroy' ruble, 'crush + the Russian oil and gas sector' in response to Putin aggression\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ Manhattan Institute + senior fellow Allison Schrager details why stock picking should not be allowed + for everyone on 'Making Money.'] delay=[100]\">\r\n Expert: + How picking stocks can be risky business\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Miami Mayor Francis + Suarez says MiamiCoin still has 'great use cases' despite falling below $39,000.] + delay=[100]\">\r\n Miami not ditching its ‘MiamiCoin’ cryptocurrency + despite record-low price, Mayor says\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Billionaire investor + Mark Cuban explained the different types of utility associated with cryptocurrencies + and argued that the “challenge” with investing in crypto “is separating the + signal from the noise.”] delay=[100]\">\r\n Billionaire entrepreneur Mark Cuban + explains the 'different types of utility' associated with crypto\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ Miami Mayor Francis + Suarez discusses the city’s cryptocurrency innovative and revenue success despite + its record-low stock price.] delay=[100]\">\r\n MiamiCoin + is in its ‘first inning’: Mayor Suarez\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Miami Mayor Francis + Suarez discusses the city's cryptocurrency falling below $39,000.] + delay=[100]\">\r\n MiamiCoin price dips to lowest point + since launch\r\n \r\n \r\n \r\n Feb-21\r\n + \ Billionaire investor + Mark Cuban argues it's important to invest in a crypto token or application + that provides value and utility.] delay=[100]\">\r\n Mark + Cuban points out the 'challenge' with crypto investing\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ Rep. Chuck Fleischmann, + R-Tenn., discusses authorities ramping up State of the Union security as the + American 'People's Convoy' gears up to protest vaccine mandates, weighs in on + the the U.S. defense budget and the Russia-Ukraine conflict.] + delay=[100]\">\r\n Putin 'playing with fire' in his own + country, Ukraine: Rep. Fleischmann\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Lt. Gen. Keith Kellogg + (ret.) argues Putin 'is ready to go' as the U.S. and its European allies grapple + with Ukraine invasion threat.] delay=[100]\">\r\n Lt. + Gen. Kellogg: We're at the end of the diplomatic game\r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n \r\n \r\n \r\n + \
CNN
\r\n
Feb-21
Putin orders Russian + troops into separatist-held areas in Ukraine
] delay=[100]\">\r\n + \ Putin orders Russian troops into separatist-held + areas in Ukraine\r\n \r\n \r\n \r\n Feb-21\r\n + \ At 38, Benjamin Alexander + became Jamaica's first ever alpine skier to compete in the Winter Olympics -- + just six years after he first strapped on skis.] delay=[100]\">\r\n + \ The Winter Olympics: African and South + Asian countries are left out in the cold\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ CNN's Nic Robertson + says that Russian President Vladimir Putin, during a made-for-TV speech from + the Kremlin, made his case that Ukraine was always a part of Russia, which indicates + that Putin is looking to reacquire all of Ukraine.] delay=[100]\">\r\n + \ Putin calls creating an independent + Ukraine 'madness'\r\n \r\n \r\n \r\n Feb-21\r\n + \ A day after it was announced + that Queen Elizabeth II has tested positive for Covid-19, UK Prime Minister + Boris Johnson has unveiled plans to end self-isolation rules and the provision + of free coronavirus tests in England.] delay=[100]\">\r\n + \ Boris Johnson announces the end of Covid + restrictions in England\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Russian ratings agency + ACRA estimates that the country's banks imported $5 billion worth of banknotes + in foreign currencies in December, up from $2.65 billion a year before, in a + pre-emptive step in case of sanctions that create increased demand.] + delay=[100]\">\r\n Russian banks imported $5 billion in + foreign cash in December\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Russian President Vladimir + Putin discusses a phone call he had with French President Emmanuel Macron where + Macron said that the US position has 'changed' on Russia's proposals.] + delay=[100]\">\r\n Putin: Macron said US position has 'changed'\r\n + \ \r\n \r\n \r\n Feb-21\r\n + \ An alternative social + media platform backed by former President Donald Trump went live on Monday, + becoming available for download on Apple's App Store — but access to the service + appears limited for now.] delay=[100]\">\r\n Trump's social media app goes live\r\n + \ \r\n \r\n \r\n Feb-21\r\n + \ The federal hate crimes + trial for the three White men convicted of the murder of Ahmaud Arbery, a 25-year-old + Black man, will soon go to the jury after testimony from more than 20 witnesses + -- several of whom spoke about racist messages used by the d...] + delay=[100]\">\r\n Closing arguments to begin in hate crimes + trial of Black jogger's killers\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Australia is demanding + China investigate the alleged use of a laser to 'illuminate' an Australian jet + in waters off the country's north coast in an incident that threatens to worsen + relations between the two countries.] delay=[100]\">\r\n Australia demands answers from China + over alleged laser incident at sea\r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n + \
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
\"\" \"\"
\r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Trader Feed
\r\n
Feb-13
 In the first post + in this series, we took a look at how traders often lose their ideas when their + stop levels are hit.  In this post, we'll examine a different, but related, + cognitive mistake.  Many traders will place trades based upo...
] + delay=[100]\">\r\n Common Mistakes Traders Make - 2: Acting + Before Understanding\r\n
Feb-06
 Yes, it's true + that problems with our mindset can interfere with good trading.  It's equally + true that bad trading can interfere with our mindset.  In coming posts, + I will highlight mistakes I see traders make and what we can do about...
] + delay=[100]\">\r\n Common Mistakes Traders Make - 1: Losing + Ideas When We Stop Out Of Trades\r\n \r\n \r\n + \ \r\n Jan-31\r\n + \  An important key + to psychological change is turning desired patterns of thought, feeling, and + action into positive habit patterns.  We don't do this through motivation.  + We do this by finding ways of being who we want to be every sing...] + delay=[100]\">\r\n How to Change Your Life\r\n \r\n + \ \r\n \r\n Jan-23\r\n + \  I have had a record + number of people reach out to me asking for coaching help.  Why?  + The majority have developed their trading in a bull market and have learned + to buy market dips.  And so they have bought, and bought, and bough...] + delay=[100]\">\r\n Why Am I Losing Money In The Market?\r\n + \ \r\n \r\n \r\n Jan-14\r\n + \  Well, it's been + about a three-month break from blogging and social media, and I have to say + it's been rejuvenating.  In any life activity that is important, there + is a time for stepping back, taking a good look at what you're doing, and ma...] + delay=[100]\">\r\n Making a Fresh Start: Lessons From + Molly Ruth\r\n \r\n \r\n \r\n Oct-11\r\n + \  Thanks for all + the interest in TraderFeed, my books, and the Three Minute Trading Coach videos.  + There's quite a library of material available there, and a lot more on performance + psychology through the Forbes articles and the spiritu...] + delay=[100]\">\r\n Taking A Break From Blogging And Social + Media\r\n \r\n \r\n \r\n Oct-04\r\n + \  A beginning trader + starts with eagerness and passion and focuses on winning.  The beginner's + great fear is to miss opportunity and so the beginner overtrades and eventually + takes significant losses.  Many traders never move beyond thi...] + delay=[100]\">\r\n Stages In A Trader's Development\r\n + \ \r\n \r\n \r\n Sep-26\r\n + \  It has become + clear to me that clarity underlies my best trading.If I sit and sit and watch + and watch and process and process what the market is doing, eventually it will + become clear what is going on.  I can see that sellers are active an...] + delay=[100]\">\r\n Trading With Clarity\r\n \r\n + \ \r\n \r\n Sep-19\r\n + \  What we think + about before we put on a trade helps determine our mindset during the life of + the trade.  When I am trading well, my thinking before the trade focuses + on two topics:1)  What will tell me the trade is wrong?  - Knowi...] + delay=[100]\">\r\n Two Great Questions To Ask During A + Trade\r\n \r\n \r\n \r\n Sep-13\r\n + \ Contact For Trading + Firms and Media:  steenbab at aol dot comMy Twitter Feed:  @steenbabRADICAL + RENEWAL - Free blog book on trading, psychology, spirituality, and leading a + fulfilling life---The Three Minute Trading Coach Videos---Forbes Ar...] + delay=[100]\">\r\n BRETT STEENBARGER'S TRADING PSYCHOLOGY + RESOURCE CENTER\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Daily Reckoning
\r\n
Feb-14
This post Who Will Blink + First? appeared first on Daily Reckoning.\nThe Fed’s consistent incompetence + could create more inflation, a stock market crash and recession…\nThe post Who + Will Blink First? appeared first on Daily Reckoning.
] delay=[100]\">\r\n + \ Who Will Blink First?\r\n \r\n + \ \r\n \r\n Feb-12\r\n + \ This post Canada Shocks + the World appeared first on Daily Reckoning.\nCanadians are generally a non-confrontational + people, who are slow to anger. Yet even the Canadians have had it with mandates, + and truckers have been staging a massive protest. Toda...] + delay=[100]\">\r\n Canada Shocks the World\r\n \r\n + \ \r\n \r\n Feb-11\r\n + \ This post “Don’t Blame + Me!” appeared first on Daily Reckoning.\nVictory has a hundred fathers while + defeat is an orphan, as the old saying goes. Today, Jeffrey Tucker shows you + how elites and petty bureaucrats are refusing to accept responsibility for...] + delay=[100]\">\r\n “Don’t Blame Me!”\r\n \r\n + \ \r\n \r\n Feb-10\r\n + \ This post The Mathematical + Cycles of History appeared first on Daily Reckoning.\n“We're at peak centralization, + and we're moving toward decentralization”…\nThe post The Mathematical Cycles + of History appeared first on Daily Reckoning.] delay=[100]\">\r\n + \ The Mathematical Cycles of History\r\n + \ \r\n \r\n \r\n Feb-09\r\n + \ This post Three Revolutionary + Cycles appeared first on Daily Reckoning.\nAs you likely know, The Daily Reckoning + is not a mainstream publication. We often venture out to the far ends of the + bell curve to discuss topics that aren’t discussed elsewhere....] + delay=[100]\">\r\n Three Revolutionary Cycles\r\n \r\n + \ \r\n \r\n Feb-08\r\n + \ This post Winter Storm + Warning appeared first on Daily Reckoning.\nToday we turn our focus from the + passing weather. It is the long view, the overall view — the seasonal view — + that commands our attention...\nThe post Winter Storm Warning appeared firs...] + delay=[100]\">\r\n Winter Storm Warning\r\n \r\n + \ \r\n \r\n Feb-07\r\n + \ This post U.S. Attains + Frightening Milestone appeared first on Daily Reckoning.\nThe United States + finally managed to find itself with $30 trillion of government debt...\nThe + post U.S. Attains Frightening Milestone appeared first on Daily Reckoning.] + delay=[100]\">\r\n U.S. Attains Frightening Milestone\r\n + \ \r\n \r\n \r\n Feb-05\r\n + \ This post No Precedent + in Our Lifetimes appeared first on Daily Reckoning.\nThe best way to discern + the direction of the real economy is to get out and experience it. Jeffrey Tucker + has been doing just that. Today he shows you what he’s found, and it ...] + delay=[100]\">\r\n No Precedent in Our Lifetimes\r\n + \ \r\n \r\n \r\n Feb-04\r\n + \ This post Just Another + Government Lie appeared first on Daily Reckoning.\nOn Wednesday we razzed economists + for preposterously overguessing — by 481,000 — January private-sector payrolls. + Today we must yank their whiskers once again. For they have man...] + delay=[100]\">\r\n Just Another Government Lie\r\n + \ \r\n \r\n \r\n Feb-02\r\n + \ This post Unbelievable + appeared first on Daily Reckoning.\nPayrolls processing outfit ADP informs us + that the United States economy failed to add 180,000 private payrolls last month…\nThe + post Unbelievable appeared first on Daily Reckoning.] delay=[100]\">\r\n + \ Unbelievable\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Abnormal Returns
\r\n
Feb-21
Mondays are all about + financial adviser-related links here at Abnormal Returns. You can check out + last week’s links including a look at...
] delay=[100]\">\r\n + \ Adviser links: in pursuit of significance\r\n + \ \r\n \r\n \r\n Feb-20\r\n + \ Sunday links: a form + of selection] delay=[100]\">\r\n Sunday links: a form of selection\r\n + \ \r\n \r\n \r\n Feb-20\r\n + \ Thanks for checking + in with us this weekend. Here are the most clicked on items on Abnormal Returns + for the week ended...] delay=[100]\">\r\n Top clicks this week on Abnormal Returns\r\n + \ \r\n \r\n \r\n Feb-19\r\n + \ On Saturdays we catch + up with the non-finance related items that we didn’t get to earlier in the week. + You can check...] delay=[100]\">\r\n Saturday links: second chances\r\n + \ \r\n \r\n \r\n Feb-19\r\n + \ A coronavirus-focused + linkfest is still a weekly feature here at Abnormal Returns. Please stay safe, + get a booster shotat a vaccination site...] delay=[100]\">\r\n + \ Coronavirus links: a modifiable health + risk\r\n \r\n \r\n \r\n Feb-18\r\n + \ Friday links: fully + experiencing things] delay=[100]\">\r\n Friday links: fully experiencing things\r\n + \ \r\n \r\n \r\n Feb-18\r\n + \ Fridays are all about + podcast links here at Abnormal Returns. You can check out last week’s links + including a look at the...] delay=[100]\">\r\n Podcast links: market crossovers\r\n + \ \r\n \r\n \r\n Feb-17\r\n + \ Thursday links: making + stuff simple] delay=[100]\">\r\n Thursday links: making stuff simple\r\n + \ \r\n \r\n \r\n Feb-17\r\n + \ Thursdays are all about + longform links on Abnormal Returns. You can check out last week’s linkfest including + a look at the hard...] delay=[100]\">\r\n Longform links: a weirder world\r\n + \ \r\n \r\n \r\n Feb-16\r\n + \ Wednesday links: the + common denominator] delay=[100]\">\r\n Wednesday links: the common denominator\r\n + \ \r\n \r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
market folly
\r\n
Nov-21
The new Q3 issue of + our quarterly newsletter was just released today: see what stocks top hedge + funds were buying, selling and why.  Subscribers please login at www.hedgefundwisdom.com + to download it.Inside the New Q3 Issue:- Reveals the latest ...
] + delay=[100]\">\r\n New Q3 Issue Just Released Today\r\n + \ \r\n \r\n \r\n Aug-20\r\n + \ The new Q2 issue of + our quarterly newsletter was just released today: see what stocks top hedge + funds were buying, selling and why.  Subscribers please login at www.hedgefundwisdom.com + to download it.Inside the New Q2 Issue:- Reveals the latest ...] + delay=[100]\">\r\n New Issue of Quarterly Hedge Fund Newsletter + Just Released\r\n \r\n \r\n \r\n May-22\r\n + \ A new issue of our quarterly + newsletter was just released and covers a volatile Q1: see what stocks top hedge + funds were buying and selling.  Subscribers please login at www.hedgefundwisdom.com + to download it.New Q1 Issue Includes:- Updates the ...] delay=[100]\">\r\n + \ What Hedge Funds Bought & Sold in the + Q1 Volatility: New Issue Just Released\r\n \r\n \r\n + \ \r\n Nov-24\r\n + \ It's been a while since + we posted a recommended reading list, so here's some ideas as well as recent + recommendations from prominent investors.Recommended Reading for the Holidays + 2020Quality Investing: Owning the Best Companies for the Long Term by L...] + delay=[100]\">\r\n Recommended Reading for the Holidays + 2020\r\n \r\n \r\n \r\n Nov-20\r\n + \ The new Q3 issue of + our hedge fund newsletter was just released today.  Subscribers please + login at www.hedgefundwisdom.com to download it.Inside the New Q3 Issue:- Reveals + the latest portfolios of 25 top hedge fund managers: David Tepper, Seth...] + delay=[100]\">\r\n New Hedge Fund Newsletter Just Released + Today\r\n \r\n \r\n \r\n Sep-28\r\n + \ The U.S. Securities + and Exchange Commission (SEC) has proposed amendments to 13F filings.  + Currently, investment managers with holdings of US securities totaling $100 + million or more are required to file a 13F each quarter.  The proposal + ...] delay=[100]\">\r\n Reasons to Oppose the SEC's New 13F + Proposal\r\n \r\n \r\n \r\n Aug-19\r\n + \ The new Q2 issue of + our hedge fund newsletter is now available.  Subscribers please login + at www.hedgefundwisdom.com to download it.Inside the New Q2 Issue:- Reveals + the latest portfolios of 25 top hedge fund managers: David Tepper, Seth Klarma...] + delay=[100]\">\r\n Updated Top Hedge Fund Holdings: New + Q2 Issue Now Available\r\n \r\n \r\n + \ \r\n May-20\r\n + \ The new Q1 issue of + our hedge fund newsletter is now available.  This portfolio snapshot coincides + directly with the pandemic market sell-off, which means this is a chance to + see what stocks top investors have long had on their watchlists that t...] + delay=[100]\">\r\n What Hedge Funds Bought & Sold in the + Volatility: New Q1 Issue Just Released\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ The new Q4 issue of + our hedge fund newsletter is now available.  It reveals the latest portfolios + of 25 top hedge funds and also features summaries of 2 stocks that Dr. Michael + Burry (of The Big Short fame) has been buying.Subscribers please log...] + delay=[100]\">\r\n New Hedge Fund Newsletter Just Released\r\n + \ \r\n \r\n\r\n \"\"\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
\"\"BLOGS\"\"
\r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Zero Hedge
\r\n
Feb-21
America's Forgotten + Seven Million: Unlocking Financial Freedom Through Bitcoin\r\n\r\n Authored + by Ray Youssef via Bitcoin Magazine,\r\n\r\nBitcoin is about people, not price.\r\n\r\n\r\n\r\nWhile + the U.S. continues to focus on bitcoin as an investment as...
] + delay=[100]\">\r\n America's Forgotten Seven Million: Unlocking + Financial Freedom Through Bitcoin\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ It 'Was Not Made To + Be Housing' - NYC Mayor Unveils Crackdown On Homeless 'Cancerous Sore' On Subway + System\r\n\r\n Following a string of violent crimes on the New York + subway system in recent weeks, including a knife attack on Feb. 17 in broa...] + delay=[100]\">\r\n It \"Was Not Made To Be Housing\" - + NYC Mayor Unveils Crackdown On Homeless \"Cancerous Sore\" On Subway System\r\n + \ \r\n \r\n \r\n Feb-21\r\n + \ Equty Futures Open Down + Hard; Gold, Oil, & Treasuries Spike\r\n\r\n As somewhat expected, + the general risk-off theme has hit market as they reopened.\r\n\r\nUS equity + futures extended their losses with Nasdaq down over 2.5%...\r\n\r\n\r\n\r\nTreasury + futu...] delay=[100]\">\r\n Equty Futures Open Down Hard; Gold, + Oil, & Treasuries Spike\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Border Crisis Can't + Wait Three More Years For A New Administration To Fix: Russ Vought\r\n\r\n Authored + by Harry Lee and Steve Lance via THe Epoch Times,\r\n\r\nThe situation at the + southern border has been so bad that it can’t wait three more yea...] + delay=[100]\">\r\n Border Crisis Can't Wait Three More + Years For A New Administration To Fix: Russ Vought\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ China Sanctions Raytheon, + Lockheed Over Taiwan Deal To 'Safeguard Its Sovereignty'\r\n\r\n The + big wildcard in today's dramatic escalation in tensions over east Ukraine, is + how and when Beijing will react to Putin's announcement recognizing th...] + delay=[100]\">\r\n China Sanctions Raytheon, Lockheed Over + Taiwan Deal To \"Safeguard Its Sovereignty\"\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ Ottawa Mayor Proposes + To Sell Confiscated 'Freedom Convoy' Trucks \r\n\r\n Ottawa police + put an end to the 'Freedom Convoy' protest in the downtown district that lasted + for three weeks. On Friday and Saturday, officers arrested demonstrators a...] + delay=[100]\">\r\n Ottawa Mayor Proposes To Sell Confiscated + 'Freedom Convoy\" Trucks\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ War Or Images Of War?\r\n\r\n + \ Authored by Edward Curtin via AntiWar.com,\r\n\r\nExperienced foreign + policy analysts such as Ray McGovern, Scott Ritter, and Pepe Escobar, while + agreeing that the Biden administration is clearly guilty of provoking R...] + delay=[100]\">\r\n War Or Images Of War?\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ Oil Prices Will Be Above + $100 For A 'Prolonged Period'\r\n\r\n As Bloomberg's Jake Lloyd-Smith + wrote last night, oil markets are so bullish at present that forecasts for $100/bbl + crude have become par for the course, which suggests that the th...] + delay=[100]\">\r\n Oil Prices Will Be Above $100 For A + \"Prolonged Period\"\r\n \r\n \r\n \r\n Feb-21\r\n + \ Ethereum Co-Founder + Welcomes 'Crypto Winter' To Flush Out Speculation, Says Canadian Tyranny Bolsters + Need For Decentralization\r\n\r\n It has not been a good few months + from the crypto world. After rampaging higher during the middle of last y...] + delay=[100]\">\r\n Ethereum Co-Founder Welcomes \"Crypto + Winter\" To Flush Out Speculation, Says Canadian Tyranny Bolsters Need For Decentralization\r\n + \ \r\n \r\n \r\n Feb-21\r\n + \ Europe Preparing To + Impose Sanctions On Russia\r\n\r\n Now that Putin has officially + recognized the separatists regions of Donetsk and Luhansk as independent, sovereign + states, warning that from this moment on the Ukraine must halt all militar...] + delay=[100]\">\r\n Europe Preparing To Impose Sanctions + On Russia\r\n \r\n \r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Howard Lindzon
\r\n
Feb-21
As a reminder, Marketsmith (by + Investor’s Business Daily) is now a sponsor of the weekly show. All the charts + you have been seeing in the videos and will continue to see are from Marketsmith. + They are offering my readers a three week trial for $19.95...
] + delay=[100]\">\r\n Momentum Monday – Capital Preservation\r\n + \ \r\n \r\n \r\n Feb-20\r\n + \ Good morning everyone.\nI + had a great ride yesterday and have a long morning rider with my regular Sunday + group this morning.\nThe weather in Phoenix continues to be perfect. There + was no winter.\nIn a couple weeks I head on the road for most of April ...] + delay=[100]\">\r\n Sunday Listens – The Anti-Conglomerate\r\n + \ \r\n \r\n \r\n Feb-19\r\n + \ One Month ago I wrote + ‘The End of Fomo‘. The gist:\nThe last twelve to 18 months was a FOMO era.\nThey + will say that inflation and interest rates killed this great market run, but + as someone watching and writing about investing every day here I knew i...] + delay=[100]\">\r\n How Bad Is 2022? Is There an End in + Sight?\r\n \r\n \r\n \r\n Feb-18\r\n + \ Happy Friday.\nI was + invited back on Bloomberg’s Odd Lots hosted by Joe Weisenthal and Tracey Alloway + to discuss all things private and public markets. What we honed in on was:\nWhy + the growth stocks plunged\nThe Great Roundtrip\nWhat’s happening with p...] + delay=[100]\">\r\n My Odd Lots Appearance on Bloomberg\r\n + \ \r\n \r\n \r\n Feb-17\r\n + \ Panic with Friends – + Investing for Profit and Joy\n \n \n\nI’m excited to bring one of my favorite + guests back for his second round of Panic: Yoshi Yokokowa, founder of Alpaca, + a Social Leverage Fund III portfolio company. Coming to you all the way from + ...] delay=[100]\">\r\n Alpaca Founder Yoshi Yokokowa on Fintech, + ReCaps, and the Stress of Losing Momentum at an Early Stage Startup\r\n + \ \r\n \r\n \r\n Feb-16\r\n + \ We had a big win at + Social Leverage today as Facebook closed the acquisition of Kustomer a fund + II portfolio company. We invested back in 2016.\nFacebook initially reached + an agreement to acquire Kustomer in November of 2020, but the deal was subject...] + delay=[100]\">\r\n Fund II Portfolio Company Kustomer Acquired + By Facebook Parent Company Meta\r\n \r\n \r\n + \ \r\n Feb-15\r\n + \ I think I have been + pretty clear in how unclear my writing has been lately about the markets and + investing…I am confused.\nMy day job and passion and career is seed investing. + \ I am not so confused about seed investing these days…prices seem VERY high...] + delay=[100]\">\r\n I am Confused….It Is OK To Be Confused\r\n + \ \r\n \r\n \r\n Feb-14\r\n + \ Happy Monday.\nAs a + reminder, Marketsmith (by Investor’s Business Daily) is now a sponsor of the + weekly show. All the charts you have been seeing in the videos and will continue + to see are from Marketsmith. They are offering my readers a three week tr...] + delay=[100]\">\r\n Momentum Monday – Adios Growth\r\n + \ \r\n \r\n \r\n Feb-13\r\n + \ Happy Sunday.\nMy feeds + are being dominated by Russia, Bitcoin and NFT’s at the moment. They have been + dominated by Bitcoin and NFT’s for a year so what is up with this Russia place?\nI + have never been to Russia which seems to be a place for unhappy p...] + delay=[100]\">\r\n Sunday Reads…Russia…Inflation…Facebook + Problems…Defense…Jobs\r\n \r\n \r\n + \ \r\n Feb-12\r\n + \ I am back in Phoenix.\nWhat + a week.\nThanks to my buddy Paul Traub for putting this together (his 70th birthday + party treat). Here we are on the first tee of Spyglass:\n\nHere is the whole + group of twelve (we are still looking for 3 of these guys last s...] + delay=[100]\">\r\n Home Sweet Home and What A Week\r\n + \ \r\n \r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Mish's Global Economic Trend Analysis
\r\n
Feb-21
The Wall Street Journal + reports Putin Says Russia to Recognize Independence of Breakaway Regions in + Ukraine Russian President Vladimir Putin said he would recognize the independence + of two Russian-led breakaway regions of Ukraine, a move that threate...
] + delay=[100]\">\r\n Russia Recognizes the Independence of + Two Breakaway Regions in the Ukraine\r\n \r\n \r\n + \ \r\n Feb-21\r\n + \ Reader Robert asked + for a Covid fiscal and monetary comparison by country and how that tied + to inflation.  The chart shows half of what he asked for.  That data + is from the OECD. If you are interested in other countries, here's the OEC...] + delay=[100]\">\r\n Global CPI Surge Comparison by Country + in the Covid-19 Recovery\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ I Feel Your Pain! President + Biden's New Message Shows He Feels Americans’ Pain.  In recent weeks, Mr. + Biden has made personal appeals in his speeches to families facing higher prices + for food, gasoline and cars. Addressing county officials this ...] + delay=[100]\">\r\n Biden Says \"I Feel Your Pain\", He + Means His Pain in Polls\r\n \r\n \r\n + \ \r\n Feb-20\r\n + \ Another ‘Last Ditch’ + Effort  Biden held last ditch efforts, then Germany, now France gets its + turn to stop Russia from invading Ukraine.   France24 reports Macron + Holds ‘Last Ditch’ Talks with Putin, US Warns Russia ‘Poised to Strike’ ...] + delay=[100]\">\r\n Another \"Last Ditch\" Effort to Stop + Russia in Repetitive Groundhog Day\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ Decision to Attack CNN + reports 'US Defense Secretary says it's apparent Russia has made a decision + and is moving into position to conduct an attack.' Probability of Major Escalation + With Russia Is Low Ukraine's Defense Minister, via US News and World...] + delay=[100]\">\r\n Ukraine Says Major Escalation Probability + is Low, US Says Russia Will Attack\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ The Benefits of Running + Hot In a headline that seems like it could be from The Onion or the Babylon + Bee, please consider Chicago Fed president Charles Evans On the Benefits + of Running the Economy Hot\n In his speech Evans frequently refers to 'r*...] + delay=[100]\">\r\n Chicago Fed President Praises the \"Benefits + of Running the Economy Hot\"\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ $SPX S&P 500 I expect + those green boxes representing unfilled gaps to easily fill. That bottom gap + would represent a 30% decline from the top. It will easily fill, in due time. + What is a Gap? A gap up occurs when the market or an individual issu...] + delay=[100]\">\r\n S&P 500 - What is the Pain Threshold + for the Fed and Traders?\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ What is a Gap? A gap + up occurs when the market or an individual issue opens higher than the high + on the previous day.A gap down occurs when the market or an individual issue + opens lower than the low on the previous day.I am a big believer in the theo...] + delay=[100]\">\r\n Newmont Mining Corporation, One Gap + Left to Fill, And it Will.\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ Economists Expectations + The Bloomberg Econoday economists' consensus opinion was for housing permits + to rise slightly from 1.702 million units, seasonally-adjusted annualized (SAAR) + to 1.708 million units.The Econoday consensus was for permits to dec...] + delay=[100]\">\r\n Housing Starts Unexpectedly Weaken But + Permits Soar to Recovery High\r\n \r\n \r\n + \ \r\n Feb-17\r\n + \ The Fed Put The Greenspan + Put Danielle asked an interesting question, especially in light of the 'Greenspan + Put'.  Greenspan put was the moniker given to the policies implemented + by Alan Greenspan during his tenure as Federal Reserve (Fed) Chair...] + delay=[100]\">\r\n Is the Fed in Control of Anything? If + So, What? At What Cost?\r\n \r\n \r\n\r\n + \ \"\"\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
\"\" \"\"
\r\n\r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \
\"\"
\r\n + \ \r\n \r\n \r\n \r\n + \ \r\n
Seeking Alpha
\r\n
Feb-20
Ally Financial: Big + Buybacks, Credit Quality, Attractive P/E
] delay=[100]\">\r\n + \ Ally Financial: Big Buybacks, Credit + Quality, Attractive P/E\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ Klepierre: Almost 'Business + As Usual' For This 6.5% Yielding Commercial REIT] delay=[100]\">\r\n + \ Klepierre: Almost 'Business As Usual' + For This 6.5% Yielding Commercial REIT\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ Noble Corporation: Company + Bags Large-Scale Contract Extension With Exxon Mobil - Buy] + delay=[100]\">\r\n Noble Corporation: Company Bags Large-Scale + Contract Extension With Exxon Mobil - Buy\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ Which 6% To 8% Yields + To Buy And Sell Amid The Market Disruption] delay=[100]\">\r\n + \ Which 6% To 8% Yields To Buy And Sell + Amid The Market Disruption\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ KKR: A More Challenging + 2022 For Private Equity] delay=[100]\">\r\n KKR: A More Challenging 2022 For Private + Equity\r\n \r\n \r\n \r\n Feb-19\r\n + \ Apple: Thief] + delay=[100]\">\r\n Apple: Thief\r\n \r\n + \ \r\n \r\n Feb-18\r\n + \ 2 Crushed Dividend Champions + Worth Saving] delay=[100]\">\r\n 2 Crushed Dividend Champions Worth Saving\r\n + \ \r\n \r\n \r\n Feb-18\r\n + \ Nvidia Earnings: Showing + The Market Still Needs To Recalibrate] delay=[100]\">\r\n + \ Nvidia Earnings: Showing The Market + Still Needs To Recalibrate\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ Buying The REIT Correction] + delay=[100]\">\r\n Buying The REIT Correction\r\n \r\n + \ \r\n \r\n Feb-18\r\n + \ Palantir Quietly Came + Good - It's Now A Buy On Pure Fundamentals] delay=[100]\">\r\n + \ Palantir Quietly Came Good - It's Now + A Buy On Pure Fundamentals\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n + \
\"\"
\r\n + \ \r\n \r\n \r\n \r\n \r\n
Fallond Stock + Picks
\r\n + \
Feb-20
The mini support (the + clustering of prices at the lows) from January was breached on heavier volume + distribution for the Nasdaq and S&P. The Nasdaq has mostly negative + technicals with only the MACD left to turn negative. Friday finished with...
] + delay=[100]\">\r\n Two days of selling threatens January + lows\r\n \r\n \r\n \r\n Feb-16\r\n + \ We haven't yet a higher + low from Monday's action, but today's trading sided more with demand than profit + taking. There are small victories to note, even if today's action remains inside + the trading range for February. The Nasdaq effectively pair...] + delay=[100]\">\r\n Markets Enjoy Some Stability\r\n + \ \r\n \r\n \r\n Feb-14\r\n + \ There wasn't a whole + to today's action - which is probably a good thing.  There was no follow + through lower, instead markets traded in a more neutral manner with a set of + narrow range doji. The Nasdaq held on to Friday's lows with a new 'se...] + delay=[100]\">\r\n Trading Action Tightens As Selling Stalls + (a little)\r\n \r\n \r\n \r\n Feb-13\r\n + \ The bounce off January + swing lows tapped out Friday as traders were keen to take profits on higher + volume distribution. In the case of the S&P there was a confirmed 'sell' + trigger in relative performance over the Russell 2000 along with an O...] + delay=[100]\">\r\n The bounce tails off as sellers re-emerge\r\n + \ \r\n \r\n \r\n Feb-08\r\n + \ Following the initial + rebound it has been a struggle between buyers and sellers in asserting dominance + over markets. In the case of the Nasdaq, the index has managed to retain + support of 13,885 as it looks to push beyond near term 20-day MA resi...] + delay=[100]\">\r\n Indices return to the upside as battle + between bulls and bears continue\r\n \r\n \r\n + \ \r\n Feb-06\r\n + \ Trading volume wasn't + that high on Friday, but end-of-week buying helped prevent an acceleration of + losses (and the fear) generated by Meta's loss in ad revenue.The January swing + lows is looking more solid in the Nasdaq. There is a bit of a mini-supp...] + delay=[100]\">\r\n Solid defense Friday helped deflect + Meta losses\r\n \r\n \r\n \r\n Feb-02\r\n + \ After some disappointing + after hour earnings report we may see this market bounce move towards the next + step, the confirmation test of the lows.  Will markets confirm the January + lows as a swing low, or will markets evolve into some broader meas...] + delay=[100]\">\r\n Retest of January Lows to Commence\r\n + \ \r\n \r\n \r\n Jan-31\r\n + \ Buyers stewed over the + weekend and started Monday with a period of buying across lead inside.  + Buying volume was down on yesterday's (and recent buying) and given the Nasdaq + gained over 3% it was a little disappointing not to see volume match th...] + delay=[100]\">\r\n And so it begins, markets initiate a + rally\r\n \r\n \r\n \r\n Jan-30\r\n + \ Friday was a good day + for bulls and a nice finish to the week.  Best of the action probably belonged + to the Nasdaq as it bounced off the 200-day MA. The index closed above Thursday's + open in what is shaping up as a week long swing low. Technical...] + delay=[100]\">\r\n Nasdaq looks to reaffirm 200-day MA + support\r\n \r\n \r\n \r\n Jan-27\r\n + \ Monday's buying should + have followed with gaps higher and the start of a recovery rally.  Instead, + we had no gap, a tentative bounce, and now a move into the spike lows of Monday + - rarely a good sign for bulls.The Nasdaq is easing back to its 20...] + delay=[100]\">\r\n Indices looking to challenge Monday's + lows\r\n \r\n \r\n \r\n + \ \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \
\"\"
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \
Calculated Risk
\r\n
Feb-21
Today, in the Calculated + Risk Real Estate Newsletter: Final Look at Local Housing Markets in JanuaryA + brief excerpt: This update adds Columbus, Illinois, Indiana, Miami, New York + and Phoenix.... Here is a summary of active listings for these housin...
] + delay=[100]\">\r\n Final Look at Local Housing Markets + in January\r\n \r\n \r\n \r\n Feb-21\r\n + \ Tracking existing home + inventory is very important in 2022.Inventory usually declines in the winter, + and this is a new record low for this series.Click on graph for larger + image in graph gallery.This inventory graph is courtesy of Altos Research...] + delay=[100]\">\r\n Housing Inventory February 21st Update: + Inventory Down Slightly Week-over-week; New Record Low\r\n \r\n + \ \r\n \r\n Feb-21\r\n + \ These indicators are + mostly for travel and entertainment.    It is interesting to watch + these sectors recover as the pandemic subsides.There was a clear negative impact + from the omicron variant of COVID that is starting to ease.----- Airlin...] + delay=[100]\">\r\n Six High Frequency Indicators for the + Economy\r\n \r\n \r\n \r\n Feb-20\r\n + \ Along with the monthly + housing starts for January last week, the Census Bureau released Housing Units + Started by Purpose and Design through Q4 2021.This graph shows the NSA quarterly + intent for four start categories since 1975: single family built fo...] + delay=[100]\">\r\n Quarterly Starts by Purpose and Design: + \"Built for rent\" Increasing\r\n \r\n \r\n + \ \r\n Feb-19\r\n + \ At the Calculated Risk + Real Estate Newsletter this week: • Existing-Home Sales Increased to 6.50 million + in January• January Forecast and 4th Look at Local Housing Markets Lawler forecast, + Adding Austin, Boston, California, Colorado, Des Moines, Minn...] + delay=[100]\">\r\n Real Estate Newsletter Articles this + Week\r\n \r\n \r\n \r\n Feb-19\r\n + \ The key reports this + week are January New Home sales and the second estimate of Q4 GDP.Other key + reports include Case-Shiller house prices and Personal Income and Outlays for + January.For manufacturing, the February Richmond and Kansas City manufactur...] + delay=[100]\">\r\n Schedule for Week of February 20, 2022\r\n + \ \r\n \r\n \r\n Feb-18\r\n + \ On COVID (focus on hospitalizations + and deaths):COVID Metrics  NowWeekAgoGoal Percent fully Vaccinated64.6%---≥70.0%1 + Fully Vaccinated (millions)214.6---≥2321 New Cases per Day3112,653188,440≤5,0002 + \ Hospitalized380,185107,772≤3,0002 Deaths p...] delay=[100]\">\r\n + \ COVID Update: February 18, 2022: Falling + Cases, Deaths and Hospitalizations\r\n \r\n \r\n + \ \r\n Feb-18\r\n + \ From CoStar: STR: US + Hotel Industry Reaches Highest Performance Since DecemberU.S. weekly hotel performance + advanced to its highest levels since December, according to STR‘s latest data + through Feb. 12.Feb. 6-12, 2022 (percentage change from comparab...] + delay=[100]\">\r\n Hotels: Occupancy Rate Down 14% Compared + to Same Week in 2019\r\n \r\n \r\n \r\n Feb-18\r\n + \ Here are a few early + forecasts for Q1 GDP.From BofA: In the second release of 4Q GDP, we expect a + revision upwards to 7.5% qoq saar growth from 6.9%. We are now tracking 2.5% + for 1Q (prev 2.0%), following the retail sales beat (February 17 estimate)e...] + delay=[100]\">\r\n Q1 GDP Forecasts: Moving Up to Around + 2%\r\n \r\n \r\n \r\n Feb-18\r\n + \ Today, in the CalculatedRisk + Real Estate Newsletter: Existing-Home Sales Increased to 6.50 million in JanuaryExcerpt: + This graph shows existing home sales by month for 2021 and 2022.Sales declined + 2.3% year-over-year compared to January 2021. This w...] + delay=[100]\">\r\n More Analysis on January Existing Home + Sales\r\n \r\n \r\n \r\n + \ \r\n \r\n
\n
\r\n + \
\r\n
\r\n affiliate\r\n + \ \r\n advertise\r\n \r\n contact\r\n + • \r\n privacy\r\n + \ \r\n help
Do not sell my personal information\r\n
\r\n + \ Quotes delayed 15 minutes for NASDAQ, + and 20 minutes for NYSE and AMEX.\r\n
\r\n Copyright + © 2007-2022 FINVIZ.com. All Rights Reserved.\r\n
\r\n + \ \r\n + \ \r\n \n\n\n
\r\n
\r\n\t\t\t \r\n\r\n + \ \r\n\r\n
\r\n\t\t\t

Upgrade + your FINVIZ experience

\r\n

\r\n Join + thousands of traders who make more informed decisions with our premium + features.\r\n Real-time quotes, advanced visualizations, + backtesting, and much more.\r\n

\r\n + \ Learn + more about FINVIZ*Elite\r\n
\r\n
\r\n + \
\n\n\n" headers: Alt-Svc: - - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400 + - h3=":443"; ma=86400, h3-29=":443"; ma=86400 Cache-Control: - no-cache Cf-Cache-Status: - DYNAMIC Cf-Ray: - - 5e161e83fe727fa4-ORD - Cf-Request-Id: - - 05c1b1667b00007fa449192200000001 + - 6e13ead32f42714a-YUL Content-Type: - text/html; charset=utf-8 Date: - - Tue, 13 Oct 2020 03:54:25 GMT + - Mon, 21 Feb 2022 23:57:29 GMT Expect-Ct: - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Expires: - - "-1" - Pragma: - - no-cache + Request-Context: + - appId=cid-v1:bdd405ef-7a83-4f9a-9228-0107d7f4bc90 Server: - cloudflare Set-Cookie: - - __cfduid=d7e26a9619d45f07df03005930c3fbed71602561265; expires=Thu, 12-Nov-20 03:54:25 GMT; path=/; domain=.finviz.com; HttpOnly; SameSite=Lax - - preventRedirectLoop=false; domain=.finviz.com; expires=Mon, 12-Oct-2020 03:54:25 GMT; path=/ + - preventRedirectLoop=false; expires=Sun, 20 Feb 2022 23:57:29 GMT; domain=.finviz.com; + path=/ Vary: - Accept-Encoding - X-Aspnet-Version: - - 4.0.30319 X-Frame-Options: - SAMEORIGIN X-Powered-By: - ASP.NET + - ARR/3.0 + - ASP.NET status: 200 OK code: 200 duration: "" diff --git a/news/cassettes/time_news_view.yaml b/news/cassettes/time_news_view.yaml index 23b1c96..d26b473 100644 --- a/news/cassettes/time_news_view.yaml +++ b/news/cassettes/time_news_view.yaml @@ -6,45 +6,1940 @@ interactions: form: {} headers: User-Agent: - - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 + - "" url: https://finviz.com/news.ashx method: GET response: - body: "\n\n\nStock Market News & Blogs\n\r\n \n\n\n\n\n\n\n\n\n\n\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \n
Your browser is no longer supported. Please, upgrade your browser.
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
HomeNewsScreenerMapsGroupsPortfolioInsiderFuturesForexCryptoBacktestsElite\r\n \r\n \r\n Help\r\n \r\n LoginRegister
\r\n \r\n \r\n \r\n
\n\r\n
\r\n \r\n Missing your favorite blog here?\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n NEWS\r\n
\r\n
\"\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\"\"BLOGS\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
11:39PM
China's imports grew at their\nfastest pace this year in September, while exports extended\ntheir strong gains as more trading partners lifted coronavirus\nrestrictions in a further boost to the world's second-biggest\neconomy.
] delay=[100]\">WRAPUP 2-China's imports, exports surge as global economy reopens
11:34PM
China's imports grew at their\nfastest pace this year in September, while exports extended\ntheir strong gains as more trading partners lifted coronavirus\nrestrictions in a further boost to the world's second-biggest\neconomy.
] delay=[100]\">WRAPUP 1-China's imports, exports surge as global economy reopens\r\n \r\n \r\n \r\n 11:34PM\r\n China's imports of major commodities\nincluding iron ore, copper, oil and soybeans rose in September\nfrom a month earlier. Coal imports eased.] delay=[100]\">INSTANT VIEW-China's iron ore, copper imports rise in Sept from August\r\n \r\n \r\n \r\n 11:29PM\r\n China imported 834,000 tonnes of\nmeat in September, customs data showed on Tuesday, similar to\nlast month, as the country continues stocking up on protein\nafter a plunge in its pork output.] delay=[100]\">China September meat imports at 834,000 tonnes - customs\r\n \r\n \r\n \r\n 11:29PM\r\n * SoftBank has growing cash pile following asset sales\n(Adds details of SoftBank's IPO pipeline)] delay=[100]\">UPDATE 5-SoftBank Vision Fund seeking cash for blank-cheque firm -source\r\n \r\n \r\n \r\n 11:24PM\r\n Japanese shares reversed course on\nTuesday to trade slightly lower as U.S. futures fell during\nAsian trade, while investors looked past an overnight tech rally\non Wall Street and waited for corporate earnings results for\nfurther direction.] delay=[100]\">Japan shares edge lower as U.S. futures fall\r\n \r\n \r\n \r\n 11:19PM\r\n Asian shares slipped\non Tuesday, brushing off a firmer Wall Street lead as China's\npost-holiday rally cooled, although a buoyant tech sector and\nfresh optimism about U.S. stimulus are expected to continue to\nsupport sentiment.] delay=[100]\">GLOBAL MARKETS-Asian shares defy Wall St gains as China rally cools\r\n \r\n \r\n \r\n 11:15PM\r\n China Exports Up, Imports Surge in September on Global Recovery] delay=[100]\">China Exports Up, Imports Surge in September on Global Recovery\r\n \r\n \r\n \r\n 11:14PM\r\n China's exports in September\nrose 9.9% from a year earlier, and imports surged 13.2%, customs\ndata showed on Tuesday.] delay=[100]\">China Sept exports rise 9.9% y/y, imports surge 13.2%\r\n \r\n \r\n \r\n 11:14PM\r\n Asian shares defy Wall St. gains as China rally cools] delay=[100]\">Asian shares defy Wall St. gains as China rally cools\r\n \r\n \r\n \r\n 11:02PM\r\n China Set to Price $6 Billion Debt Deal as Soon as Wednesday] delay=[100]\">China Set to Price $6 Billion Debt Deal as Soon as Wednesday\r\n \r\n \r\n \r\n 10:44PM\r\n The dollar flirted with three-week\nlows on Tuesday as investors stuck to hopes that there will be\nlarge U.S. fiscal stimulus after the Nov. 3 election to shore up\na pandemic-hit economy, supporting riskier currencies.] delay=[100]\">CORRECTED-FOREX-Dollar flirts with 3-wk low as investors count on eventual stimulus\r\n \r\n \r\n \r\n 10:44PM\r\n The yuan slipped on Tuesday\nafter the central bank set a weaker than forecast midpoint.] delay=[100]\">Yuan slips after PBOC sets weaker midpoint\r\n \r\n \r\n \r\n 10:40PM\r\n 5 stocks for the next 10 years — some picks are obvious, others not so much] delay=[100]\">5 stocks for the next 10 years — some picks are obvious, others not so much\r\n \r\n \r\n \r\n 10:19PM\r\n The following table shows rates for Asian\ncurrencies against the dollar at 0205 GMT.\n \n \n Currency Latest bid Previous Pct\n day Move\n Japan yen 105.300 105.3 +0.00\n Sing dlr 1.359...] delay=[100]\">EMERGING MARKETS-Most Asian currencies weaker; S. Korean won falls the most\r\n \r\n \r\n \r\n 10:19PM\r\n * SoftBank has growing cash pile following asset sales\n(Adds analyst reaction, updates shares)] delay=[100]\">UPDATE 4-SoftBank Vision Fund preparing blank cheque acquisition company - source\r\n \r\n \r\n \r\n 10:19PM\r\n * China Jan-Sept crude oil imports up 12.7% year-on-year at\n416\nmillion tonnes, according to a statement by China's General\nAdministration of Customs on Tuesday.] delay=[100]\">China Jan-Sept crude oil imports up 12.7% y/y at 416 mln tonnes - Customs\r\n \r\n \r\n \r\n 10:16PM\r\n Car Sales in China Shine as Rest of World Reels From Pandemic] delay=[100]\">Car Sales in China Shine as Rest of World Reels From Pandemic\r\n \r\n \r\n \r\n 10:13PM\r\n China is set to release U.S. dollar-denominated trade figures for September.] delay=[100]\">China says exports and imports rose in the third quarter in yuan terms\r\n \r\n \r\n \r\n 10:09PM\r\n China's yuan-denominated exports\nin the third quarter rose 10.2% from a year earlier, the customs\nagency said on Tuesday, while imports increased 4.3% on year.] delay=[100]\">China Q3 yuan-denominated exports rise 10.2% y/y, imports up 4.3%\r\n \r\n \r\n \r\n 09:43PM\r\n While the Asia-Pacific region treads water until a coronavirus vaccine is found, the West's biggest economies are drowning as a second wave firmly establishes itself in Europe.] delay=[100]\">The West is being left behind as it squanders Covid-19 lessons from Asia-Pacific\r\n \r\n \r\n \r\n 09:37PM\r\n U.S. Futures Retreat; Dollar, Treasuries Gain: Markets Wrap] delay=[100]\">U.S. Futures Retreat; Dollar, Treasuries Gain: Markets Wrap\r\n \r\n \r\n \r\n 09:33PM\r\n Cuba’s economy minister on Monday\nurged calm as the government prepares to unify its dual currency\nsystem and multiple exchange rates in hopes of improving\neconomic performance.] delay=[100]\">Cuba urges calm as overhaul of monetary system looms\r\n \r\n \r\n \r\n 09:31PM\r\n Drugmaker Johnson & Johnson said Monday it has paused the advanced clinical trial of its experimental coronavirus vaccine because of an unexplained illness in one of the volunteers.] delay=[100]\">Johnson & Johnson pauses Covid-19 vaccine trial after 'unexplained illness'\r\n \r\n \r\n \r\n 09:19PM\r\n The dollar flirted with three-week\nlows on Friday as investors stuck to hopes that there will be\nlarge U.S. fiscal stimulus after the Nov. 3 election to shore up\na pandemic-hit economy, supporting riskier currencies.] delay=[100]\">FOREX-Dollar flirts with 3-wk low as investors count on eventual stimulus\r\n \r\n \r\n \r\n 08:53PM\r\n Last week, Indonesia's parliament passed a controversial and sweeping jobs law that environmentalists say will have a disastrous impact on the country's forests and rich biodiversity.] delay=[100]\">Indonesia is putting business before the environment and that could be disastrous for its rainforests\r\n \r\n \r\n \r\n 08:41PM\r\n Money Map Press chief strategist Shah Gilani, Spotlight Asset Group CIO Shana Sissel, and Wealth Enhancement Group SVP Nicole Webb discuss their outlook for the markets.] delay=[100]\">What's next for the markets?\r\n \r\n \r\n \r\n 08:40PM\r\n They are all nervous.] delay=[100]\">Regretful Trump voters: 'I got it wrong'\r\n \r\n \r\n \r\n 08:38PM\r\n SoftBank Group Corp's\nVision Fund is preparing to launch a blank cheque acquisition\ncompany and will outline plans in the next two weeks, a source\nfamiliar with the matter said, confirming comments by the fund's\nhead Rajeev Misra.] delay=[100]\">UPDATE 3-SoftBank Vision Fund preparing blank cheque acquisition company - source\r\n \r\n \r\n \r\n 08:22PM\r\n Bangladesh is set to allow the death penalty for convicted rapists after weeks of protests over sexual violence in the country.] delay=[100]\">Bangladesh to allow death penalty for convicted rapists\r\n \r\n \r\n \r\n 08:14PM\r\n China’s Stock Market Tops $10 Trillion for First Time Since 2015] delay=[100]\">China’s Stock Market Tops $10 Trillion for First Time Since 2015\r\n \r\n \r\n \r\n 08:08PM\r\n Hong Kong Delays Market Trading as Tropical Storm Nangka Nears] delay=[100]\">Hong Kong Delays Market Trading as Tropical Storm Nangka Nears\r\n \r\n \r\n \r\n 08:03PM\r\n SoftBank Group Corp's\nVision Fund is preparing to launch a blank cheque acquisition\ncompany and will outline plans in the next two weeks, a source\nfamiliar with the matter said, confirming comments by the fund's\nhead Rajeev Misra.] delay=[100]\">UPDATE 2-SoftBank Vision Fund preparing blank cheque acquisition company - source\r\n \r\n \r\n \r\n 08:03PM\r\n Walt Disney Co said on Monday it\nhad restructured its media and entertainment businesses to\naccelerate growth of Disney+ and other streaming services as\nconsumers increasingly gravitate to digital viewing.] delay=[100]\">UPDATE 3-Walt Disney restructures entertainment businesses to boost streaming\r\n \r\n \r\n \r\n 08:03PM\r\n Asian stocks were set to rise\non Tuesday as a renewed tech rally and fresh optimism that\nWashington would deliver a coronavirus relief package helped\nlift global equity markets.] delay=[100]\">GLOBAL MARKETS-Asian stocks set to rise as tech, stimulus hopes fuel global rally\r\n \r\n \r\n \r\n 07:47PM\r\n Portugal's Socialist government\nunveiled its draft 2021 budget on Monday, offering more\nsubsidies to the poorest hit by the coronavirus pandemic and\nbetting on public investment to relaunch growth.] delay=[100]\">UPDATE 2-Portugal's draft 2021 budget raises investment, subsidies, in bid to return to growth\r\n \r\n \r\n \r\n 07:32PM\r\n SoftBank Group Corp's\nVision Fund is preparing to launch a blank cheque acquisition\ncompany and will outline plans in the next two weeks, a source\nfamiliar with the matter said, confirming comments by the fund's\nhead Rajeev Misra.] delay=[100]\">UPDATE 1-SoftBank Vision Fund preparing blank cheque acquisition company - source\r\n \r\n \r\n \r\n 07:27PM\r\n SoftBank Group Corp's\nVision Fund is preparing to launch a blank cheque acquisition\ncompany and will outline plans in the next two weeks, a source\nfamiliar with the matter said, confirming comments by the fund's\nhead Rajeev Misra.\n(Reporting by Sam N...] delay=[100]\">SoftBank Vision Fund preparing blank cheque acquisition company - source\r\n \r\n \r\n \r\n 07:26PM\r\n Bryn Mawr’s Jeff Mills warns it's too difficult to determine the economic recovery's path.] delay=[100]\">Virus aid uncertainty will likely burn short-term investors, Bryn Mawr's Jeff Mills warns\r\n \r\n \r\n \r\n 07:25PM\r\n Trump Tests Negative; Singapore Economy to See Hit: Virus Update] delay=[100]\">Trump Tests Negative; Singapore Economy to See Hit: Virus Update\r\n \r\n \r\n \r\n 07:22PM\r\n Australia Seeks Clarity From Beijing on Coal Import Ban] delay=[100]\">Australia Seeks Clarity From Beijing on Coal Import Ban\r\n \r\n \r\n \r\n 07:21PM\r\n United Nations Secretary-General\nAntonio Guterres on Monday urged development banks to stop\nbacking fossil fuel projects, after a report found the World\nBank had invested $12 billion in the sector since the 2015 Paris\nAgreement to combat climate chan...] delay=[100]\">UPDATE 1-As World Bank faces scrutiny, U.N. chief warns lenders over fossil fuels\r\n \r\n \r\n \r\n 07:07PM\r\n British consumers ramped up their\nspending sharply last month as some households stockpiled and\nbegan their Christmas shopping early ahead of possible new\ncoronavirus restrictions, according to surveys published on\nTuesday.] delay=[100]\">UK consumers, sensing new COVID restrictions, speed up spending - surveys\r\n \r\n \r\n \r\n 07:07PM\r\n Investors managing around $20\ntrillion in assets on Tuesday called on the heaviest corporate\nemitters of greenhouse gases to set science-based targets on the\nway to net zero carbon emissions by mid-century.] delay=[100]\">Investors urge heavy carbon emitters to set science-based reduction targets\r\n \r\n \r\n \r\n 07:07PM\r\n * October manufacturers' sentiment index -26 vs September\n-29] delay=[100]\">Japan manufacturers struggle to shake gloom in Oct - Reuters Tankan\r\n \r\n \r\n \r\n 07:07PM\r\n Japan's manufacturers remained\npessimistic in October, in a sign of a slow recovery of the\ncoronavirus-stricken economy, though some manufacturers expected\nthe mood to stabilise in the months ahead, the Reuters Tankan\nsurvey showed. \n ...] delay=[100]\">TABLE-Japan business remains pessimistic in October - Reuters Tankan\r\n \r\n \r\n \r\n 07:01PM\r\n High borrowing and low growth after Covid will leave the economy stretched for years, says a think tank.] delay=[100]\">UK economy cannot be fully protected, says IFS\r\n \r\n \r\n \r\n 06:26PM\r\n Some G20 creditor countries\nare reluctant to broaden and extend another year of coronavirus\ndebt service relief to the world's poorest countries, so a\nsix-month compromise may emerge this week, World Bank President\nDavid Malpass said on Monday.] delay=[100]\">UPDATE 2-World Bank's Malpass says G20 may agree to only 6-month debt relief extension\r\n \r\n \r\n \r\n 06:23PM\r\n Stock futures open higher ahead of Apple and Amazon events, earnings] delay=[100]\">Stock futures open higher ahead of Apple and Amazon events, earnings\r\n \r\n \r\n \r\n 06:17PM\r\n Oil Stems Decline Near $40 Amid Easing Supply Constraints] delay=[100]\">Oil Stems Decline Near $40 Amid Easing Supply Constraints\r\n \r\n \r\n \r\n 06:09PM\r\n Newspapers and networks are wary of exposing their staff members to the president and his aides, saying they do not have assurance that basic precautions will be taken to protect reporters’ health.] delay=[100]\">As Trump Flouts Safety Protocols, News Outlets Balk at Close Coverage\r\n \r\n \r\n \r\n 06:06PM\r\n Thirty of the world's largest\ninvestors managing a combined $5 trillion said on Tuesday they\nplan to set targets to lower their portfolio carbon emissions by\nas much as 29% over the next five years.] delay=[100]\">$5 trln investor group sets tougher portfolio carbon targets\r\n \r\n \r\n \r\n 06:06PM\r\n Central banks set out to regulate\ncross-border stablecoins like Facebook's planned Libra with a\ncommon approach on Tuesday, saying more rules may later be\nneeded to ensure stability.] delay=[100]\">Global watchdogs agree rules for stablecoins like Facebook's Libra\r\n \r\n \r\n \r\n 06:03PM\r\n Third quarter earnings season kicks off on Tuesday with reports from JPMorgan, Citigroup and Delta Air Lines.] delay=[100]\">Stock futures flat as investors await earnings season kickoff\r\n \r\n \r\n \r\n 05:59PM\r\n Wisconsin officials say the firm's investment has not met minimum targets outlined in 2017.] delay=[100]\">Foxconn investment falls short of Trump promise\r\n \r\n \r\n \r\n 05:51PM\r\n Portugal's Socialist government\nunveiled its draft 2021 budget on Monday, offering more\nsubsidies to the poorest hit by the coronavirus pandemic and\nbetting on public investment to relaunch growth.] delay=[100]\">UPDATE 1-Portugal's draft 2021 budget raises investment, subsidies, in bid to return to growth\r\n \r\n \r\n \r\n 05:40PM\r\n Dalio Says ‘Time Is on China’s Side’ in Power Struggle With U.S.] delay=[100]\">Dalio Says ‘Time Is on China’s Side’ in Power Struggle With U.S.\r\n \r\n \r\n \r\n 05:32PM\r\n Asia Stocks to Track U.S. Higher; Oil Slides: Markets Wrap] delay=[100]\">Asia Stocks to Track U.S. Higher; Oil Slides: Markets Wrap\r\n \r\n \r\n \r\n 05:17PM\r\n PG&E Probation Judge Demands Information on Deadly Zogg Fire] delay=[100]\">PG&E Probation Judge Demands Information on Deadly Zogg Fire\r\n \r\n \r\n \r\n 05:11PM\r\n Williams-Sonoma Inc. said late Monday its board of directors has OK'd a 10% dividend increase to 53 cents a share. The dividend is payable on Nov. 27 to stockholders of record on Oct. 23. The retailer also said it has resumed its share buyback progr...] delay=[100]\">Williams-Sonoma raises dividend, resumes share buyback\r\n \r\n \r\n \r\n 05:00PM\r\n The move was one of the biggest by Bob Chapek since he became C.E.O. in February.] delay=[100]\">Disney Reorganization Puts a Sharper Focus on Streaming\r\n \r\n \r\n \r\n 05:00PM\r\n Singapore Central Bank Gives Way to Fiscal Punch: Decision Guide] delay=[100]\">Singapore Central Bank Gives Way to Fiscal Punch: Decision Guide\r\n \r\n \r\n \r\n 04:50PM\r\n At least 19 analysts initiated coverage of Snowflake on Monday, with price targets ranging from $214 to $350.] delay=[100]\">Snowflake draws bullish calls from Wall Street, though some analysts say stock is fully valued\r\n \r\n \r\n \r\n 04:50PM\r\n Three small investment funds\nhave started buying defaulted Venezuelan bonds as hopes of a\nchange of government are fading and the South American nation is\nproposing a restructuring, according to sources and documents.] delay=[100]\">UPDATE 1-Small investment funds buy Venezuela bonds to pressure Maduro and Guaido\r\n \r\n \r\n \r\n 04:50PM\r\n Mexico's peso fell on Monday after data\npointed to slowing industrial recovery in the country, while\nother Latin American currencies were subdued in light trading as\nmajor markets in the region were shut. \n The peso fell for the first time i] delay=[100]\">EMERGING MARKETS-Mexican peso falls, Latam FX muted in thin trading\r\n \r\n \r\n \r\n 04:50PM\r\n Top Forecaster Sees Aussie’s Stellar Gains Coming to an End] delay=[100]\">Top Forecaster Sees Aussie’s Stellar Gains Coming to an End\r\n \r\n \r\n \r\n 04:49PM\r\n See which stocks are posting big moves after the bell on October 12.] delay=[100]\">Stocks making the biggest moves after hours: Disney, Twilio, Ethan Allen and more\r\n \r\n \r\n \r\n 04:41PM\r\n Retail Investors Embrace Risk and the ‘Hive Mind’ in Stock Boom] delay=[100]\">Retail Investors Embrace Risk and the ‘Hive Mind’ in Stock Boom\r\n \r\n \r\n \r\n 04:40PM\r\n Capitalist Pig Hedge Fund manager Jonathan Hoenig provides insight into stock market gains.] delay=[100]\">'Technology powering the market forward': Jonathan Hoenig\r\n \r\n \r\n \r\n 04:18PM\r\n Day-Trader Options Action Is Yet Again Spotted in Nasdaq Surge] delay=[100]\">Day-Trader Options Action Is Yet Again Spotted in Nasdaq Surge\r\n \r\n \r\n \r\n 04:11PM\r\n Tech shares rallied on Monday to lead the broader market higher.] delay=[100]\">Here's what happened to the stock market on Monday\r\n \r\n \r\n \r\n 04:10PM\r\n U.S. stocks on Monday booked sharp gains to start the week ahead of the unofficial start of earnings and continued focus on the coming presidential election and stalled stimulus talks on Congress. The Dow Jones Industrial Average (: DJIA) closed the ...] delay=[100]\">Stocks book 4th straight gain to start week and Nasdaq ends 1.5% below record high ahead of earnings kick off\r\n \r\n \r\n \r\n 04:05PM\r\n * White House calls for limited COVID-19 relief bill\n(Updates to close)] delay=[100]\">US STOCKS-Apple and Amazon drive rally on Wall Street\r\n \r\n \r\n \r\n 03:50PM\r\n Hygo Energy Transition Ltd, a\njoint venture between Golar LNG and U.S. private equity\nfirm Stonepeak Infrastructure Partners, has appointed Paul\nHanrahan as chief executive officer after his predecessor,\nEduardo Antonello, stepped down amid a Brazili...] delay=[100]\">UPDATE 2-Hygo Energy names new CEO after predecessor resigned amid Brazil graft probe\r\n \r\n \r\n \r\n 03:50PM\r\n * African states face financing gap of $345 billion through\n2023\n(Adds SDR data)] delay=[100]\">UPDATE 3-More synchronized action needed to tackle COVID economic crisis -IMF's Georgieva\r\n \r\n \r\n \r\n 03:42PM\r\n Amazon and Apple take the lead as the Nasdaq climbs back.] delay=[100]\">LIVE Stock market updates and business headlines\r\n \r\n \r\n \r\n 03:33PM\r\n Tech Stocks Power Markets Higher] delay=[100]\">Tech Stocks Power Markets Higher\r\n \r\n \r\n \r\n 03:25PM\r\n United Nations Secretary-General\nAntonio Guterres on Monday urged development banks to stop\nbacking fossil fuel projects, raising the pressure on the\nstate-backed lenders ahead of a climate change summit France is\nhosting next month.] delay=[100]\">UN chief urges development banks to stop financing fossil fuel projects\r\n \r\n \r\n \r\n 03:15PM\r\n Both Black and Apollo have moved quickly to distance themselves from Epstein following the allegations.] delay=[100]\">Apollo CEO, co-founder Leon Black may have funneled as much as $75M to Jeffrey Epstein: report\r\n \r\n \r\n \r\n 03:14PM\r\n CNN's Brianna Keilar breaks down how some vulnerable Republican senators are attempting to distance themselves from President Donald Trump ahead of the 2020 election.] delay=[100]\">These GOP senators are distancing themselves from Trump\r\n \r\n \r\n \r\n 03:14PM\r\n The move from Revolut, valued at $5.5 billion in a February fundraising round, is the latest example of one of a new breed of digital challengers seeking to become a regulated bank.] delay=[100]\">European fintech giant Revolut is close to applying for a bank charter in California, sources say\r\n \r\n \r\n \r\n 03:04PM\r\n The dollar index was little changed near three-week lows on Monday as\noptimism over the possibility of a COVID-19 relief bill was curbed by concern ove] delay=[100]\">FOREX-Dollar index slips but holds near 3-week lows; yuan drops\r\n \r\n \r\n \r\n 02:56PM\r\n Former Chase Chief Economist Anthony Chan on his outlook for the markets and economy.] delay=[100]\">Economist: Forward earnings moving higher 'very encouraging' for equity market\r\n \r\n \r\n \r\n 02:56PM\r\n Merida Capital Partners managing partner Mitch Baruchowitz on cannabis stocks going up due to potential decriminalization.] delay=[100]\">Cannabis stocks a buy?\r\n \r\n \r\n \r\n 02:56PM\r\n Covid-19 Resurgence to Take a New Swipe at Surgery Recovery] delay=[100]\">Covid-19 Resurgence to Take a New Swipe at Surgery Recovery\r\n \r\n \r\n \r\n 02:54PM\r\n The Nasdaq Composite Index on Monday afternoon was surging more than 3% higher, putting the technology-laden index within striking distance of exiting a plunge into correction territory produced back on Sept. 8. A drop of at least 10% for an asset fr...] delay=[100]\">Nasdaq Composite stands less than 1% from exiting correction territory Monday afternoon\r\n \r\n \r\n \r\n 02:53PM\r\n Leon Black Addresses Epstein Relationship in Letter to Investors] delay=[100]\">Leon Black Addresses Epstein Relationship in Letter to Investors\r\n \r\n \r\n \r\n 02:49PM\r\n Global stocks scaled five-week highs on\nMonday on hopes that more government stimulus was coming and the\nworld economy was on the mend, while the Chinese yuan retreated\nfrom a 17-month high after a policy move over the weekend.] delay=[100]\">UPDATE 1-World stocks zoom to 5-week highs on economic, stimulus hopes\r\n \r\n \r\n \r\n 02:47PM\r\n Oil futures on Monday marked their lowest settlement in a week with crude production poised to recover in Libya, Norway and the Gulf of Mexico. 'Supply woes have eased,' said David Madden, market analyst at CMC Markets UK. 'Production in the Gulf of ...] delay=[100]\">Oil ends at 1-week low as Libya and Norway output look to rise, Gulf of Mexico starts post-hurricane recovery\r\n \r\n \r\n \r\n 02:44PM\r\n * Indexes: Dow +1.13%, S&P 500 +2.01%, Nasdaq +3.16\n(Updates to afternoon trading)] delay=[100]\">US STOCKS-Wall Street surges on Apple, Microsoft, Amazon\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
11:40PM
Trump Seeking Last Minute Pre-Election Nuke Deal With Putin\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 23:40\r\n\r\n The clock is winding down on the last major arms control agreement between Moscow and Washington, after prior late Cold War ...
] delay=[100]\">Trump Seeking Last Minute Pre-Election Nuke Deal With Putin\r\n \r\n \r\n \r\n 11:20PM\r\n Australian Media Finally Calls Out Davos 'Great Reset' Agenda\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 23:20\r\n\r\n Via 21stCenturyWire.com,\r\n\r\nThis week, Sky News Australia contributor and former Australian Senator Cory Bernardi, tore op...] delay=[100]\">Australian Media Finally Calls Out Davos \"Great Reset\" Agenda\r\n \r\n \r\n \r\n 11:00PM\r\n Watch: Kim Jong Un Wipes Away Tears During Rare 'Apology' For Litany Of North's Hardships\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 23:00\r\n\r\n The big news out of North Korea this past weekend was Saturday's military parade marking the 7...] delay=[100]\">Watch: Kim Jong Un Wipes Away Tears During Rare 'Apology' For Litany Of North's Hardships\r\n \r\n \r\n \r\n 10:40PM\r\n Coup Who?\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 22:40\r\n\r\n Authored by Mark Hemingway via AmericanMind.org,\r\n\r\nScaremongering Democrats protest too much.\r\n\r\n\r\n\r\nIn August, two retired military officers published a piece in Defense On...] delay=[100]\">Coup Who?\r\n \r\n \r\n \r\n 10:20PM\r\n China Says It Foiled Major Taiwan Spy Network As Taipei Denounces 'Malicious Political Stunt'\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 22:20\r\n\r\n In what could be used as a possible pretext for war or at least as huge leverage amid incr...] delay=[100]\">China Says It Foiled Major Taiwan Spy Network As Taipei Denounces \"Malicious Political Stunt\"\r\n \r\n \r\n \r\n 10:10PM\r\n Trump goes after Nate Silver and Silver Responds.] delay=[100]\">Trump Trolls Nate Silver in a Tweet\r\n \r\n \r\n \r\n 10:00PM\r\n Azerbaijani Military Destroys Armenian S-300s As Humanitarian Ceasefire Nears Collapse\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 22:00\r\n\r\n Submitted by SouthFront,\r\n\r\nThe Armenian-Azerbaijani war in the Nagorno-Karabakh region does not ...] delay=[100]\">Azerbaijani Military Destroys Armenian S-300s As Humanitarian Ceasefire Nears Collapse\r\n \r\n \r\n \r\n 09:40PM\r\n No Stimulus, No Problem: One Bank Sees 'No Armageddon' Without A New Stimulus Deal\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:40\r\n\r\n In recent weeks, many have opined - this website included  - that with the US economy careening into ...] delay=[100]\">No Stimulus, No Problem: One Bank Sees \"No Armageddon\" Without A New Stimulus Deal\r\n \r\n \r\n \r\n 09:20PM\r\n SoftBank's Vision Fund Plans SPAC, Vows It Is Not Behind Nasdaq Melt-up\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:20\r\n\r\n SPACs (it stands for Special Purpose Acquisition Vehicle) raised a ton of money over the summer as the craze tha...] delay=[100]\">SoftBank's Vision Fund Plans SPAC, Vows It Is Not Behind Nasdaq Melt-up\r\n \r\n \r\n \r\n 09:14PM\r\n Tuesday:• At 8:30 AM ET, The Consumer Price Index for September from the BLS. The consensus is for a 0.2% increase in CPI, and a 0.2% increase in core CPI.] delay=[100]\">Tuesday: CPI\r\n \r\n \r\n \r\n 09:14PM\r\n Johnson & Johnson Latest To Halt COVID-19 Vaccine Trial Over Unspecified Illness\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:14\r\n\r\n Yet another high-profile Phase 3 vaccine trial has been temporarily halted after one of the participant...] delay=[100]\">Johnson & Johnson Latest To Halt COVID-19 Vaccine Trial Over Unspecified Illness\r\n \r\n \r\n \r\n 09:00PM\r\n NBA Finals Game 6 Saw Ratings Crash 66% Despite Being Season Finale\r\n\r\n Tyler Durden\r\n \r\nMon, 10/12/2020 - 21:00\r\n\r\n The last game of the NBA Finals - arguably the most important game of any NBA season - posted ratings that were abou...] delay=[100]\">NBA Finals Game 6 Saw Ratings Crash 66% Despite Being Season Finale\r\n \r\n \r\n \r\n 06:29PM\r\n The US is now mostly reporting 700 thousand to 1 million tests per day. Based on the experience of other countries, the percent positive needs to be well under 5% to really push down new infections (probably close to 1%), so the US still needs to i...] delay=[100]\">October 12 COVID-19 Test Results\r\n \r\n \r\n \r\n 05:06PM\r\n Base development continued across the board as all lead indices posted gains. The biggest gain came with the Nasdaq as it moved ever closer to its last swing high in September. Technicals for this index are all bullish, with the index making relative...] delay=[100]\">Indices Accelerate Gains\r\n \r\n \r\n \r\n 04:15PM\r\n Note: This is as of October 4th.From the MBA: Share of Mortgage Loans in Forbearance Declines to 6.32%The Mortgage Bankers Association’s (MBA) latest Forbearance and Call Volume Survey revealed that the total number of loans now in forbearance decrea...] delay=[100]\">MBA Survey: \"Share of Mortgage Loans in Forbearance Declines to 6.32%\"\r\n \r\n \r\n \r\n 04:08PM\r\n The Fed has a Municipal Liquidity Fund (MLF). Illinois has tapped it twice.] delay=[100]\">Illinois is the Only State to Borrow Money from the Fed\r\n \r\n \r\n \r\n 01:53PM\r\n Way back in 2005, I posted a graph of the Real Estate Agent Boom. Here is another update to the graph.The graph shows the number of real estate licensees in California.The number of agents peaked at the end of 2007 (housing activity peaked in 2005, ...] delay=[100]\">Update: Real Estate Agent Boom and Bust\r\n \r\n \r\n \r\n 01:50PM\r\n Senator Graham (R. S.C.) is going out of his way to lose his Senate election.] delay=[100]\">Senator Graham Insults Blacks, Tries Hard to Lose Election\r\n \r\n \r\n \r\n 01:45PM\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">Monday links: understanding ‘irrational behavior’\r\n \r\n \r\n \r\n 11:36AM\r\n Mondays are all about financial adviser-related links here at Abnormal Returns. You can check out last week’s links including a look at...] delay=[100]\">Adviser links: proactive communications\r\n \r\n \r\n \r\n 11:01AM\r\n Yesterday I posted some recent demographic data U.S. Demographics: Largest 5-year cohorts, and Ten most Common Ages in 2019A decade ago, a large cohort was moving into the 20 to 29 year old age group (a key age group for renters) and I was very ...] delay=[100]\">Demographics: Renting vs. Owning\r\n \r\n \r\n \r\n 08:58AM\r\n As a reminder, Marketsmith (by Investor’s Business Daily) is now a sponsor of the weekly show. All the charts you have been seeing in the videos and will continue to see are from Marketsmith. They are offering my readers a three week trial for $19.95...] delay=[100]\">Momentum Monday – Blue Wave?\r\n \r\n \r\n \r\n 08:27AM\r\n These indicators are mostly for travel and entertainment - some of the sectors that will recover very slowly.----- Airlines: Transportation Security Administration -----The TSA is providing daily travel numbers. Click on graph for larger image.This d...] delay=[100]\">Seven High Frequency Indicators for the Economy\r\n \r\n \r\n \r\n 08:20AM\r\n Inflation refers to the price changes over a period of time. Two types of inflation exist – expected and unexpected. Out of the two, the unexpected inflation has higher costs as it is usually the result of an exogenous shock (e.g., oil crisis in the ...] delay=[100]\">Helicopter Money – Myth and Reality\r\n \r\n \r\n \r\n 08:18AM\r\n Digitalization is a major theme – no doubt about it. Big tech firms from the United States dominate the world and quickly became the largest corporations. Nasdaq 100, the stock market index that tracks the technology companies surged to a new all-tim...] delay=[100]\">Bitcoin and the Rise of Fintech\r\n \r\n \r\n \r\n 08:00AM\r\n Millennials want to buy a home but underestimate how much they need for a down payment.] delay=[100]\">Millennials Greatly Underestimate How Much They Need For a Down Payment\r\n \r\n \r\n \r\n Oct-11\r\n Weekend:• Schedule for Week of October 11, 2020Monday:• Columbus Day Holiday: Banks will be closed in observance of Columbus Day. The stock market will be open. No economic releases are scheduled.From CNBC: Pre-Market Data and Bloomberg futures S&...] delay=[100]\">Sunday Night Futures\r\n \r\n \r\n \r\n Oct-11\r\n The US is now mostly reporting 700 thousand to 1 million tests per day. Based on the experience of other countries, the percent positive needs to be well under 5% to really push down new infections (probably close to 1%), so the US still needs to i...] delay=[100]\">October 11 COVID-19 Test Results\r\n \r\n \r\n \r\n Oct-11\r\n Another day when Small Caps maintained their run of good form by closing above the August swing high, but buying volume was down on Thursdays. Technicals remain net bullish and have been since before the mini breakout in October. The only downside wa...] delay=[100]\">Russell 2000 Closes Week At New Swing High\r\n \r\n \r\n \r\n Oct-11\r\n Markets – up and over the 50-day Moving Average. Watching one forgotten sector NOW on the rise – and earnings season this coming week. Looking at the Polls and Pundits – both of which are usually wrong and how to consider positioning your...] delay=[100]\">TDI Podcast: Portfolio Prep Time (#683)\r\n \r\n \r\n \r\n Oct-11\r\n Independent restaurants skid towards bankruptcy as large chains recover.] delay=[100]\">Big Divide in the Restaurant Industry\r\n \r\n \r\n \r\n Oct-11\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">Sunday links: when the stock market tanks\r\n \r\n \r\n \r\n Oct-11\r\n IMPORTANT NOTE: The data below is based on the Census 2019 estimates. Housing economist Tom Lawler has pointed out some questions about earlier Census estimates, see: Lawler: 'New Long-Term Population Projections Show Slower Growth than Previous Pr...] delay=[100]\">U.S. Demographics: Largest 5-year cohorts, and Ten most Common Ages in 2019\r\n \r\n \r\n \r\n Oct-11\r\n Robinhood customer service is essentially nonexistent, even in cases of fraud.] delay=[100]\">Robinhood Accounts Looted and No Customer Service to Call\r\n \r\n \r\n \r\n Oct-11\r\n Republican and Democrat leaders want little to do with Trump's covid stimulus proposal. Reasons vary.] delay=[100]\">Republicans and Democrats Reject Trump's Covid Proposal\r\n \r\n \r\n \r\n Oct-11\r\n  Life is a gym.Every day is an opportunity for a workout, to make ourselves stronger, more fit.We can exercise our relationships, our patience, our focus, our persistence, our discipline, our learning, our trading--or we can go through the motio...] delay=[100]\">Making Friends With Discomfort\r\n \r\n \r\n \r\n Oct-11\r\n Thanks for checking in with us this weekend. Here are the most clicked on items on Abnormal Returns for the week ended...] delay=[100]\">Top clicks this week on Abnormal Returns\r\n \r\n \r\n \r\n Oct-11\r\n Tulips To Tesla] delay=[100]\">Tulips To Tesla\r\n \r\n \r\n \r\n Oct-10\r\n The Center for Disease Control issued a sweeping mask regulation but Trump blocked it.] delay=[100]\">Trump Blocked CDC From Requiring Masks on Public Transportation\r\n \r\n \r\n \r\n Oct-10\r\n The US is now mostly reporting 700 thousand to 1 million tests per day. Based on the experience of other countries, the percent positive needs to be well under 5% to really push down new infections (probably close to 1%), so the US still needs to i...] delay=[100]\">October 10 COVID-19 Test Results\r\n \r\n \r\n \r\n Oct-10\r\n What a long strange trip COVID has been from my small footprint of Phoenix, Coronado and a few days in LA. I have still not been on a plane since February.\nI was out for a socially distanced lunch in San Diego today with an old friend and finally ca...] delay=[100]\">Catching Up On All Things SPACs and Collectibles\r\n \r\n \r\n \r\n Oct-10\r\n Speculators are net short a record number of 30-year long bond contracts.] delay=[100]\">Long Bond Bears Should Fear a Huge Short Squeeze\r\n \r\n \r\n \r\n Oct-10\r\n Saturdays are the day we catch up with all the non-finance related stuff we didn’t get to during the week. You can...] delay=[100]\">Saturday links: the rest of your life\r\n \r\n \r\n \r\n Oct-10\r\n Go Big Or Go Home] delay=[100]\">Go Big Or Go Home\r\n \r\n \r\n \r\n Oct-10\r\n A linkfest dedicated to the coronavirus pandemic is now a weekly feature here on Abnormal Returns. You can read last week’s edition...] delay=[100]\">Coronavirus links: a very clear signal\r\n \r\n \r\n \r\n Oct-10\r\n Annaly: 9% Yield Better Than 7% Yield Preferred Share] delay=[100]\">Annaly: 9% Yield Better Than 7% Yield Preferred Share\r\n \r\n \r\n \r\n Oct-10\r\n EPR Properties: Live And Let Die] delay=[100]\">EPR Properties: Live And Let Die\r\n \r\n \r\n \r\n Oct-10\r\n Markets Enter New Phase] delay=[100]\">Markets Enter New Phase\r\n \r\n \r\n \r\n Oct-09\r\n Trump refuses to do a virtual debate so the sponsors formally cancelled the event.] delay=[100]\">Second Debate Cancelled, Biden Wins by Default\r\n \r\n \r\n \r\n Oct-09\r\n How A Federal Drilling Permit Ban Could Impact The Williams Companies And MPLX LP] delay=[100]\">How A Federal Drilling Permit Ban Could Impact The Williams Companies And MPLX LP\r\n \r\n \r\n \r\n Oct-09\r\n This post The Theory That Will Revolutionize Economics appeared first on Daily Reckoning.\nHere at The Daily Reckoning, we are suspicious of most new ideas. They are often lunatic. But today, we yield the floor to America’s no.1 futurist, George Gilde...] delay=[100]\">The Theory That Will Revolutionize Economics\r\n \r\n \r\n \r\n Oct-09\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">Friday links: the difficult work\r\n \r\n \r\n \r\n Oct-09\r\n Ares Capital Finally A Buy: Did You Miss It?] delay=[100]\">Ares Capital Finally A Buy: Did You Miss It?\r\n \r\n \r\n \r\n Oct-09\r\n Fridays are all about podcast links here at Abnormal Returns. You can check out last week’s links including a discussion about big...] delay=[100]\">Podcast links: upside-down markets\r\n \r\n \r\n \r\n Oct-09\r\n Visa: Continuing Recovery Brings Double-Digit Annualised Return] delay=[100]\">Visa: Continuing Recovery Brings Double-Digit Annualised Return\r\n \r\n \r\n \r\n Oct-09\r\n Raoul Pal the founder of Real Vision turned the tables and interviewed me for his new series ‘Has Everything Changed’. \nI had the chance to riff on many of my favorite investing themes and trends explaining my digital optimism and the FinTAM explosi...] delay=[100]\">Has Everything Changed? My Digital Optimism Despite Harsh Economic Realities – My Interview With Raoul Pal of Real Vision\r\n \r\n \r\n \r\n Oct-09\r\n One of the most expected energy reports in the world is the OPEC (Organization of Petroleum Exporting Countries) World Oil Outlook. An annual publication, it offers a glimpse into the energy markets. \nSince oil takes the largest share of the global e...] delay=[100]\">2020 World Oil Outlook Is Here\r\n \r\n \r\n \r\n Oct-09\r\n One of the most incredible stock market comebacks in history happened in 2020. As the world’s economies plunged into the unknown, the U.S. stock market, and soon after, other markets, climbed from the hole and outperformed in a spectacular mann...] delay=[100]\">Two Decades of Changes at Top Five Corporate America\r\n \r\n \r\n \r\n Oct-09\r\n Solid Bargain At An Apartment Near You] delay=[100]\">Solid Bargain At An Apartment Near You\r\n \r\n \r\n \r\n Oct-09\r\n CII: Tech-Heavy Portfolio Yielding 6.74%] delay=[100]\">CII: Tech-Heavy Portfolio Yielding 6.74%\r\n \r\n \r\n \r\n Oct-08\r\n Are you already signed up for our daily e-mail newsletter? Great, but did you know that we just launched an adviser-focused e-mail...] delay=[100]\">Thursday links: a simple story of brand value\r\n \r\n \r\n \r\n Oct-08\r\n Thursdays are now all about longform links on Abnormal Returns. You can check out last week’s linkfest including a look at how...] delay=[100]\">Longform links: complexity is a constant\r\n \r\n \r\n \r\n Oct-08\r\n I was introduced to Kelvin Beachum by Ryan Nece because we were b0th investors living in Phoenix. It just turns out that Kelvin and Ryan are also NFL football players (Kelvin is playing for the Cardinals this year…Ryan is retired and investing full ...] delay=[100]\">Kelvin Beachum Joins Me On ‘Panic With Friends’ and We Talk Investing and Life as an NFL Player During a Pandemic\r\n \r\n \r\n \r\n Oct-08\r\n J.P. Morgan is often recognized as one of the biggest bankers of all time. Under his watch, the House of Morgan became the most influential bank in the United States and Britain, having businesses in other parts of the world too.\nIn times of crisis, ...] delay=[100]\">It Is Time To Fear Debt Levels?\r\n \r\n \r\n \r\n Oct-08\r\n One of the most interesting metrics to watch when interpreting the effects of an economic recession is the number of bankruptcies it provokes. Businesses come and go on a regular basis, even during normal economic times.\nIt is when the economy strugg...] delay=[100]\">Bankruptcies – A Contrarian Bullish Signal?\r\n \r\n \r\n \r\n Oct-07\r\n Yesterday's selling was a flash in the pan quickly undone by today's trading. The Russell 2000 sharply advanced, taking out the August swing high with technicals all firmly in the green. The only negative was the lower volume, but this is a marked ad...] delay=[100]\">Russell 2000 Continues To Perform Well\r\n \r\n \r\n \r\n Oct-07\r\n In 2015, the Swiss National Bank (SNB) gave way to the 1.20 fixed exchange rate on the EURCHF cross. For several years, it kept selling CHF, constantly intervening in the FX market. \nAs such, January 2015 still remains in history as the month when th...] delay=[100]\">Swiss National Bank FX Interventions Bigger Than in 2015\r\n \r\n \r\n \r\n Oct-07\r\n The Australian dollar keeps hovering above the 0.7 level against its American peer and trades with little or no direction. The highest it has been during the coronavirus crisis was just shy above 0.7400, on the back of the Fed’s efforts to improve th...] delay=[100]\">What Is New For the Australian Dollar?\r\n \r\n \r\n \r\n Oct-07\r\n Last week I had my friend Jeff Richards (GGV Ventures) on my new Zoom show ‘Investing for Profit and Joy’. He had a great riff on many of the stocks and trends he finds interesting but I most loved his take on the reboot of the US Economy.\nYou can w...] delay=[100]\">The Reboot Of The Us Economy Will Be Built Around Small Business. The Small Business Reboot Will Be Built On Technology\r\n \r\n \r\n \r\n Oct-07\r\n President Trump is back at the White House after 72 hours in the hospital – a miracle cure – nothing to be afraid of. With the holiday shopping season around the corner – we look at the potential winners and losers during the pandem...] delay=[100]\">DHUnplugged #525: A Modern Day Miracle\r\n \r\n \r\n \r\n Oct-06\r\n The fund of fund structure and strategy has a bad rap from the hedge fund world. The returns for hedge funds have lagged the S&P returns so you can imagine a fund of fund structure with fees on fees is not a popular strategy with investors. In ...] delay=[100]\">The Fund Of Fund and Its Role In Venture Capital – A ‘Panic With Friends’ With Patrick O’Connor Of Summit Peak Investments\r\n \r\n \r\n \r\n Oct-06\r\n  Here's a great exercise:Look at how you prepare for the trading day from the moment you wake up.  Look at how you approach your trading, how you make your decisions, how you deal with the ups and downs of P/L.  Look at how you review ...] delay=[100]\">You Are Your Own Role Model\r\n \r\n \r\n \r\n Oct-05\r\n Webinar Replay – Horowitz & Company Client Update October 5, 2020 REGISTER FOR THIS LIMITED SERIES Important Disclosures This is not a recommendation to buy or sell any security. Past performance is no indication of future results. Please r...] delay=[100]\">H&C – After Hours Q&A Popup Webinar (10/5/2020)\r\n \r\n \r\n \r\n Oct-05\r\n The Russell 2000 had shown the most promise into last week's close and followed that with a move past the most recent swing high - albeit on light volume. In doing so, it returned above its 50-day MA and brings into play the August high as the next c...] delay=[100]\">Markets Shrug Off Trump's Covid-19 Diagnosis\r\n \r\n \r\n \r\n Oct-05\r\n This post Get Ready for Chaos appeared first on Daily Reckoning.\nJim Rickards shows you why you need to prepare for the coming chaos, even after the election itself…\nThe post Get Ready for Chaos appeared first on Daily Reckoning.] delay=[100]\">Get Ready for Chaos\r\n \r\n \r\n \r\n Oct-05\r\n This post Things Just Got Even Crazier appeared first on Daily Reckoning.\n“Just one more wild card in a year of wild cards including the pandemic itself, an economic depression, social unrest and a Supreme Court vacancy”…\nThe post Things Just Got Eve...] delay=[100]\">Things Just Got Even Crazier\r\n \r\n \r\n \r\n Oct-05\r\n Good Monday morning everyone.\nBefore get started…three cheers for Apple TV…which NOBODY expected to be cranking out great content in 2020. My three favorite shows of the year are all on Apple TV – Defending Jacob, Tehran and Ted Lasso.\nOnwards…\nThe...] delay=[100]\">Momentum Monday – Give Me A Shot of Dexamethasone and Stimulus Please and Put It On The Next Generation\r\n \r\n \r\n \r\n Oct-04\r\n All indices suffered selling on Friday, although selling volume was light, but given the Trump announcement after the Friday close it's hard to see anything but selling on Monday. The context to the selling will be a bounce that has struggled to reac...] delay=[100]\">Sellers Control Friday's Action - But Monday Will Be The Real Test\r\n \r\n \r\n \r\n Oct-04\r\n  Hate can be your ally in making changes.If you get to the point of actually *hating* your trading problems, you push those problems away from you.  You don't identify with them.  You don't lazily fall into them.If you *hate* frustrati...] delay=[100]\">How To Make Big Changes In Your Trading Psychology\r\n \r\n \r\n \r\n Oct-04\r\n A few weeks back I wrote about the finTAM explosion across the globe. Alpaca is at the center of it. Today, Alpaca’s founder Yoshi Yokokawa joins me to talk about the company and the opportunity.\nYou can listen to the podcast here on Spotify, or th...] delay=[100]\">Alpaca Founnder Yoshi Yokokawa Joins Me On ‘Panic With Friends’ To Explain Their Commission Free Stock Trading API\r\n \r\n \r\n \r\n Oct-03\r\n Dr. Richard Smith is our guest this week – talking about the weaponization of social media is social media and the TikTok deal. And…how quickly things change – the COVID fight continues as we are hopefully getting closer to a stimulus bil...] delay=[100]\">TDI Podcast: Surveillance Capitalization with Dr. Smith (#682)\r\n \r\n \r\n \r\n Oct-03\r\n Happy Saturday everyone. I took the day off of writing but I was catching up in the studio making podcasts with Knut and recording zoom video conversations with some of my favorite investors.\nThere is this old saying in the markets that stocks are s...] delay=[100]\">Stocks are stories, Bonds are Math – No Wonder SPACS are flying And Disney Is Lagging…And Jeff Richards On The Digital Rebooting Of The American Economy\r\n \r\n \r\n \r\n Oct-02\r\n This post What Hypocrites appeared first on Daily Reckoning.\nWe surprise a reader… How can a man of so much wealth — Donald Trump — pay so little in taxes when Bob pays so much?\nThe post What Hypocrites appeared first on Daily Reckoning.] delay=[100]\">What Hypocrites\r\n \r\n \r\n \r\n Oct-01\r\n This post Markets vs. Politics: Which Will It Be appeared first on Daily Reckoning.\nAfter Tuesday night’s debate we are reminded of the dismal reality of politics and why markets are far preferable to politics. Politics may be necessary, yet their ne...] delay=[100]\">Markets vs. Politics: Which Will It Be\r\n \r\n \r\n \r\n Oct-01\r\n I have written about The Fintam Explosion which has been driven in part by the API economy.\nThere is an exploding API economy which is now a key part in the reboot of the American economy.\nThis piece titled ‘The Third Party API Economy – How To Give ...] delay=[100]\">The Creator Economy and The API Economy\r\n \r\n \r\n \r\n Sep-30\r\n It was looking good for the indices in early m the day, but by the close indices weren't able to hold on to their gains. However, all indices finished in positive territory and any (small) upside tomorrow would likely be sufficient to maintain moment...] delay=[100]\">Markets attempt to rally but fall short by the close\r\n \r\n \r\n \r\n Sep-30\r\n  In the last blog post, I described how I think about markets and trade successfully.  When I follow that framework, I generally do well.  When I attempt to view and trade markets in other ways, I rarely succeed.The most recent Forbes ...] delay=[100]\">Why You're Having Trouble Getting To The Next Level Of Trading Success\r\n \r\n \r\n \r\n Sep-29\r\n This post About Tonight’s Debate appeared first on Daily Reckoning.\nThe one factor in tonight’s debate that could sway voters… The media’s hatred of Trump goes “way beyond” simple media bias…\nThe post About Tonight’s Debate appeared first on Daily Re...] delay=[100]\">About Tonight’s Debate\r\n \r\n \r\n \r\n Sep-28\r\n Friday's rally offered a promising open with a gap higher, but there was no follow through on these gains. In the case of the Nasdaq, there was a close above the 50-day which also picked up the 20-day MA but if the gap is to register as a true '...] delay=[100]\">Bounce stalls despite morning gaps\r\n \r\n \r\n \r\n Sep-28\r\n The U.S. Securities and Exchange Commission (SEC) has proposed amendments to 13F filings.  Currently, investment managers with holdings of US securities totaling $100 million or more are required to file a 13F each quarter.  The proposal ...] delay=[100]\">Reasons to Oppose the SEC's New 13F Proposal\r\n \r\n \r\n \r\n \r\n
\n
\r\n
\r\n
\r\n affiliate\r\n \r\n advertise\r\n \r\n contact\r\n \r\n privacy\r\n \r\n help
Do not sell my personal information\r\n
\r\n Quotes delayed 15 minutes for NASDAQ, and 20 minutes for NYSE and AMEX.\r\n
\r\n Copyright © 2007-2020 FINVIZ.com. All Rights Reserved.\r\n
\r\n \r\n \n\n\n
\r\n
\r\n\t\t\t \r\n \r\n \r\n\r\n
\r\n\t\t\t

Upgrade your FINVIZ experience

\r\n

\r\n Join thousands of traders who make more informed decisions with our premium features.\r\n Real-time quotes, advanced visualizations, backtesting, and much more.\r\n

\r\n Learn more about FINVIZ*Elite\r\n
\r\n
\r\n
\n\n" + body: "\n\n\nStock Market News & Blogs\n\r\n + \ \n\n\n\n\n\n\n\r\n \r\n \r\n \r\n \r\n \n\n\n\n\n\r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n \r\n + \ \r\n + \ \r\n + \ \r\n \r\n \n\r\n + \ \r\n
Your + browser is no longer supported. Please, upgrade your browser.
\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n + \ \r\n
\r\n \r\n + \
\r\n \r\n \r\n + \ \r\n \r\n + \ \r\n \r\n + \ \r\n
\r\n + \ \r\n + \
\r\n
\r\n \r\n + \ \r\n + \
\r\n
\r\n + \
\r\n
\r\n
\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n + \ \r\n
\r\n \r\n
HomeNewsScreenerMapsGroupsPortfolioInsiderFuturesForexCryptoBacktestsElite\r\n + \ \r\n + \ \r\n Help\r\n + \ \r\n LoginRegister
\r\n \r\n + \ \r\n \r\n
\n\r\n
\r\n + \ \r\n Missing + your favorite blog here?\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n + \ \r\n + \
\r\n \r\n \r\n + \ \r\n \r\n + \
\r\n + \ NEWS\r\n + \
\r\n
\"\"\r\n \r\n \r\n + \ \r\n \r\n + \ \r\n + \ \r\n
\"\"BLOGS\r\n + \ \r\n
\r\n
\r\n \r\n \r\n \r\n + \ \r\n + \
06:57PM
Investors were bracing + for a torrid day for Russian, Ukrainian and wider global markets when they reopen + on Tuesday, after Vladimir Putin upped the ante in a crisis the West fears could + unleash a major war.
] delay=[100]\">Markets brace for heavy falls as Russia-Ukraine + crisis escalates
06:44PM
Ukraine-Russia crisis: + Stock futures tank as situation escalates
] delay=[100]\">Ukraine-Russia crisis: Stock futures + tank as situation escalates\r\n \r\n \r\n \r\n + \ 06:36PM\r\n + \ Stocks to Extend Drop + on Deepening Ukraine Tension: Markets Wrap] delay=[100]\">Stocks to Extend Drop on Deepening Ukraine + Tension: Markets Wrap\r\n \r\n \r\n \r\n + \ 06:30PM\r\n + \ What a Russian invasion + of Ukraine would mean for markets as Putin orders troops to separatist regions] + delay=[100]\">What a Russian invasion of Ukraine would + mean for markets as Putin orders troops to separatist regions\r\n \r\n + \ \r\n \r\n + \ 06:30PM\r\n + \ Oil Soars as Putin Orders + Forces to Separatist Areas of Ukraine] delay=[100]\">Oil Soars as Putin Orders Forces to + Separatist Areas of Ukraine\r\n \r\n \r\n \r\n + \ 06:28PM\r\n + \ U.S. stock index futures + tumbled on Monday after Russian President Vladimir Putin recognized two breakaway + regions in eastern Ukraine, increasing concerns about a major war.] + delay=[100]\">Futures drop as Putin recognizes Ukraine + rebel regions\r\n \r\n \r\n \r\n + \ 06:10PM\r\n + \ Stock futures fell Monday + night, as traders continue to monitor brewing tensions between Russia and Ukraine.] + delay=[100]\">Dow futures drop more than 400 points + as tensions between Russia and Ukraine brew\r\n \r\n + \ \r\n \r\n + \ 05:56PM\r\n + \ Roasted coffee prices + haven't spiked this much since 2012. Wholesale roasters are already trying to + manage those increasing costs.] delay=[100]\">Coffee prices skyrocketing for customers + and roasters: ‘Everybody’s basically taking a hit’\r\n \r\n + \ \r\n \r\n + \ 05:37PM\r\n + \ Putin orders Russian + troops into separatist-held areas in Ukraine] delay=[100]\">Putin orders Russian troops into separatist-held + areas in Ukraine\r\n \r\n \r\n \r\n + \ 05:33PM\r\n + \ Stocks to Extend Drop + on Deepening Ukraine Tension: Markets Wrap] delay=[100]\">Stocks to Extend Drop on Deepening Ukraine + Tension: Markets Wrap\r\n \r\n \r\n \r\n + \ 05:25PM\r\n + \ Elon Musk’s Attorney + Accuses SEC of Leaking Details of Probe] delay=[100]\">Elon Musk’s Attorney Accuses SEC of + Leaking Details of Probe\r\n \r\n \r\n \r\n + \ 04:48PM\r\n + \ Australian shares are + likely to open lower on Tuesday as investor sentiment remained bleak on worries + of a possible escalation of the conflict in Ukraine in the near future.] + delay=[100]\">Australia shares set to open lower as + Ukraine worries simmer, NZ gains\r\n \r\n \r\n \r\n + \ 04:13PM\r\n + \ Paraguay Soy Crushers + Plead For Duty-Free Imports to Stay Open] delay=[100]\">Paraguay Soy Crushers Plead For Duty-Free + Imports to Stay Open\r\n \r\n \r\n \r\n + \ 04:11PM\r\n + \ Graham made the call + in a tweet thread after Putin’s national address in which he recognized the + independence of the Donetsk People's Republic and Luhansk People's Republic + areas of Ukraine.] delay=[100]\">Graham calls to 'destroy' ruble, 'crush + the Russian oil and gas sector' in response to Putin aggression\r\n + \ \r\n \r\n \r\n + \ 04:00PM\r\n + \ What to Expect in Hong + Kong's Budget From Vouchers to Interest Rates] delay=[100]\">What to Expect in Hong Kong's Budget + From Vouchers to Interest Rates\r\n \r\n \r\n \r\n + \ 03:49PM\r\n + \ Russian Stocks, Ruble, + Lead Global Markets Down, While Oil Rises Amid Ukraine Tensions] + delay=[100]\">Russian Stocks, Ruble, Lead Global Markets + Down, While Oil Rises Amid Ukraine Tensions\r\n \r\n + \ \r\n \r\n + \ 03:49PM\r\n + \ Standard General, Apollo + Near $24-Per-Share Tegna Deal] delay=[100]\">Standard General, Apollo Near $24-Per-Share + Tegna Deal\r\n \r\n \r\n \r\n + \ 03:14PM\r\n + \ Manhattan Institute + senior fellow Allison Schrager details why stock picking should not be allowed + for everyone on 'Making Money.'] delay=[100]\">Expert: How picking stocks can be risky + business\r\n \r\n \r\n \r\n + \ 03:14PM\r\n + \ Miami Mayor Francis + Suarez says MiamiCoin still has 'great use cases' despite falling below $39,000.] + delay=[100]\">Miami not ditching its ‘MiamiCoin’ cryptocurrency + despite record-low price, Mayor says\r\n \r\n \r\n \r\n + \ 03:08PM\r\n + \ Colombia Central Bank + Approval Hits Record Low as Prices Surge] delay=[100]\">Colombia Central Bank Approval Hits + Record Low as Prices Surge\r\n \r\n \r\n \r\n + \ 03:03PM\r\n + \ Countries that depend + on the region’s rich supply of energy, wheat, nickel and other staples could + feel the pain of price spikes.] delay=[100]\">What’s at Stake for the Global Economy + if Russia Invades Ukraine\r\n \r\n \r\n \r\n + \ 03:00PM\r\n + \ U.K. Outlines Post-Brexit + Reforms to Reduce Burden on Insurers] delay=[100]\">U.K. Outlines Post-Brexit Reforms to + Reduce Burden on Insurers\r\n \r\n \r\n \r\n + \ 02:55PM\r\n + \ Billionaire investor + Mark Cuban explained the different types of utility associated with cryptocurrencies + and argued that the “challenge” with investing in crypto “is separating the + signal from the noise.”] delay=[100]\">Billionaire entrepreneur Mark Cuban + explains the 'different types of utility' associated with crypto\r\n + \ \r\n \r\n \r\n + \ 02:55PM\r\n + \ Miami Mayor Francis + Suarez discusses the city’s cryptocurrency innovative and revenue success despite + its record-low stock price.] delay=[100]\">MiamiCoin is in its ‘first inning’: + Mayor Suarez\r\n \r\n \r\n \r\n + \ 02:46PM\r\n + \ Miami Mayor Francis + Suarez discusses the city's cryptocurrency falling below $39,000.] + delay=[100]\">MiamiCoin price dips to lowest point since launch\r\n + \ \r\n \r\n \r\n + \ 02:46PM\r\n + \ At 38, Benjamin Alexander + became Jamaica's first ever alpine skier to compete in the Winter Olympics -- + just six years after he first strapped on skis.] delay=[100]\">The Winter Olympics: African and South + Asian countries are left out in the cold\r\n \r\n \r\n \r\n + \ 02:36PM\r\n + \ Billionaire investor + Mark Cuban argues it's important to invest in a crypto token or application + that provides value and utility.] delay=[100]\">Mark Cuban points out the 'challenge' + with crypto investing\r\n \r\n \r\n \r\n + \ 02:35PM\r\n + \ CNN's Nic Robertson + says that Russian President Vladimir Putin, during a made-for-TV speech from + the Kremlin, made his case that Ukraine was always a part of Russia, which indicates + that Putin is looking to reacquire all of Ukraine.] delay=[100]\">Putin calls creating an independent + Ukraine 'madness'\r\n \r\n \r\n \r\n + \ 02:26PM\r\n + \ Rep. Chuck Fleischmann, + R-Tenn., discusses authorities ramping up State of the Union security as the + American 'People's Convoy' gears up to protest vaccine mandates, weighs in on + the the U.S. defense budget and the Russia-Ukraine conflict.] + delay=[100]\">Putin 'playing with fire' in his own country, Ukraine: + Rep. Fleischmann\r\n \r\n \r\n \r\n + \ 02:17PM\r\n + \ Tech-dominated \\] + delay=[100]\">'Growth' stocks still not cheap, cautions + JPMorgan\r\n \r\n \r\n \r\n + \ 01:28PM\r\n + \ A day after it was announced + that Queen Elizabeth II has tested positive for Covid-19, UK Prime Minister + Boris Johnson has unveiled plans to end self-isolation rules and the provision + of free coronavirus tests in England.] delay=[100]\">Boris Johnson announces the end of Covid + restrictions in England\r\n \r\n \r\n \r\n + \ 01:12PM\r\n + \ Lt. Gen. Keith Kellogg + (ret.) argues Putin 'is ready to go' as the U.S. and its European allies grapple + with Ukraine invasion threat.] delay=[100]\">Lt. Gen. Kellogg: We're at the end of + the diplomatic game\r\n \r\n \r\n \r\n + \ 01:12PM\r\n + \ Investor and Dallas + Mavericks owner Mark Cuban argues 'people will come back to the markets' even + though there is 'a lull now.'] delay=[100]\">Mark Cuban on market turbulence, future + of crypto\r\n \r\n \r\n \r\n + \ 12:15PM\r\n + \ Marathon’s Huge Louisiana + Oil Refinery Rocked by Explosion, Fire] delay=[100]\">Marathon’s Huge Louisiana Oil Refinery + Rocked by Explosion, Fire\r\n \r\n \r\n \r\n + \ 12:08PM\r\n + \ Global markets are already + pricing chunky geopolitical risks, but there is scope for risk premia to rise + further across all sectors, if a conflict breaks out between Russia and Ukraine, + Goldman Sachs strategists said in a note on Monday.] delay=[100]\">Markets pricing some geopolitics, but + risk premia can grow further -Goldman\r\n \r\n \r\n \r\n + \ 11:58AM\r\n + \ Fed’s Bowman Backs March + Hike, Is Open to Debate on Half-Point] delay=[100]\">Fed’s Bowman Backs March Hike, Is Open + to Debate on Half-Point\r\n \r\n \r\n \r\n + \ 11:57AM\r\n + \ Andrew Durgee, the head + of crypto and tokenization at Republic, argued that volatility is the “nature + of the industry” and that it will continue, in large part fueled by current + geopolitical events.] delay=[100]\">Crypto expert reveals how long volatility + in industry could last\r\n \r\n \r\n \r\n + \ 11:36AM\r\n + \ Hedging the Russian + Ruble Hasn’t Been so Expensive Since 2015] delay=[100]\">Hedging the Russian Ruble Hasn’t Been + so Expensive Since 2015\r\n \r\n \r\n \r\n + \ 11:32AM\r\n + \ Russian ratings agency + ACRA estimates that the country's banks imported $5 billion worth of banknotes + in foreign currencies in December, up from $2.65 billion a year before, in a + pre-emptive step in case of sanctions that create increased demand.] + delay=[100]\">Russian banks imported $5 billion in + foreign cash in December\r\n \r\n \r\n \r\n + \ 11:28AM\r\n + \ The head of crypto and + tokenization at Republic, Andrew Durgee, reveals what is causing the latest + wave of volatility in the industry and what to expect moving forward.] + delay=[100]\">Crypto expert on what is causing volatility\r\n + \ \r\n \r\n \r\n + \ 11:15AM\r\n + \ A long stretch of below-average + rainfall in Ivory Coast's cocoa regions extended into last week, and farmers + said strong rains were needed to boost the mid-crop, which starts in April.] + delay=[100]\">Dry spell worries Ivory Coast cocoa + farmers ahead of mid-crop\r\n \r\n \r\n \r\n + \ 11:00AM\r\n + \ RBNZ Set to Deliver + Third Rate Hike, Signal Faster Tightening] delay=[100]\">RBNZ Set to Deliver Third Rate Hike, + Signal Faster Tightening\r\n \r\n \r\n \r\n + \ 10:55AM\r\n + \ Russian President Vladimir + Putin discusses a phone call he had with French President Emmanuel Macron where + Macron said that the US position has 'changed' on Russia's proposals.] + delay=[100]\">Putin: Macron said US position has 'changed'\r\n + \ \r\n \r\n \r\n + \ 10:55AM\r\n + \ Allianz Fires Fund Managers + After Multibillion-Dollar Blowup] delay=[100]\">Allianz Fires Fund Managers After Multibillion-Dollar + Blowup\r\n \r\n \r\n \r\n + \ 10:52AM\r\n + \ JPMorgan Chase economists + now see the Federal Reserve hiking interest rates nine consecutive times as + central bank policymakers look to tackle hotter-than-expected inflation.] + delay=[100]\">JPMorgan now sees Fed hiking interest + rates 9 times to combat red-hot inflation\r\n \r\n + \ \r\n \r\n + \ 10:46AM\r\n + \ Porsches and Lamborghinis + Lost at Sea May Be Worth $155 Million] delay=[100]\">Porsches and Lamborghinis Lost at Sea + May Be Worth $155 Million\r\n \r\n \r\n \r\n + \ 10:43AM\r\n + \ Former State Department + policy planning director Kiron Skinner discusses China and Russia's relationship + as the two countries look to unseat the U.S. as the global economic super power.] + delay=[100]\">Former State Dept. policy planning director warns of blossoming + relationship between China, Russia\r\n \r\n \r\n \r\n + \ 10:32AM\r\n + \ FOX Business' Lydia + Hu reports 9.6 million people couldn’t pay for their home energy bill almost + every month in the past year, with ‘no relief in sight.'] + delay=[100]\">1 in 4 Americans compromise on food, medicine to pay energy + bill\r\n \r\n \r\n \r\n + \ 10:32AM\r\n + \ Surging Diamond Demand + Helps Botswana Trader Post Record Sales] delay=[100]\">Surging Diamond Demand Helps Botswana + Trader Post Record Sales\r\n \r\n \r\n \r\n + \ 10:03AM\r\n + \ Even as the housing + market booms in the U.S., dreams of online real-estate riches have faded in + the stock market.] delay=[100]\">Online Real Estate Isn't Worth the Chance\r\n + \ \r\n \r\n \r\n + \ 09:58AM\r\n + \ Welcome to the home + for real-time coverage of markets brought to you by Reuters reporters. You can + share your thoughts with us at markets.research@thomsonreuters.com] + delay=[100]\">LIVE MARKETS Volatility is back, along + with Ukraine tensions\r\n \r\n \r\n \r\n + \ 09:56AM\r\n + \ World stocks hit 3-week + lows, oil rises on Russia-Ukraine fears] delay=[100]\">World stocks hit 3-week lows, oil rises + on Russia-Ukraine fears\r\n \r\n \r\n \r\n + \ 09:46AM\r\n + \ UBS managing director + and senior portfolio manager Jason Katz weighs in on how the Russia-Ukraine + conflict can impact the markets.] delay=[100]\">All eyes in the market are on Russia, + Ukraine: Jason Katz\r\n \r\n \r\n \r\n + \ 09:46AM\r\n + \ The head of crypto and + tokenization at Republic, Andrew Durgee, argues volatility in the industry will + continue, in large part fueled by current geopolitical events.] + delay=[100]\">Crypto expert argues volatility is the 'nature of the + industry'\r\n \r\n \r\n \r\n + \ 09:43AM\r\n + \ Luxshare Precision Industry + Co Ltd , an Apple Inc supplier, said on Monday it aims to raise up to 13.5 billion + yuan ($2.13 billion) to fund six projects, including building a production line + for wearable devices.] delay=[100]\">Apple supplier Luxshare plans share + issue to fund new production lines\r\n \r\n \r\n \r\n + \ 09:34AM\r\n + \ RBI to Enter Into Sell-Buy + Swaps Worth $5 Billion] delay=[100]\">RBI to Enter Into Sell-Buy Swaps Worth + $5 Billion\r\n \r\n \r\n \r\n + \ 09:18AM\r\n + \ Bank of Israel Sees + ‘Gradual’ Rise in Rates in Coming Months] delay=[100]\">Bank of Israel Sees ‘Gradual’ Rise in + Rates in Coming Months\r\n \r\n \r\n \r\n + \ 09:09AM\r\n + \ Thru the Cycle president + John Lonski comments on the Fed's hand in economic movement.] + delay=[100]\">Inflation will 'remain a problem': Lonski\r\n + \ \r\n \r\n \r\n + \ 09:06AM\r\n + \ OPEC Delegates See Another + Small Supply Boost Despite Pressure] delay=[100]\">OPEC Delegates See Another Small Supply + Boost Despite Pressure\r\n \r\n \r\n \r\n + \ 09:00AM\r\n + \ Quincy Institute senior + research fellow Anatol Lieven discusses Eastern Europe tensions as President + Biden looks to meet with Vladimir Putin 'in principle' if Russia doesn't invade + Ukraine.] delay=[100]\">Lieven on Nord Stream 2 Pipeline: US + needs to respect German vital interest\r\n \r\n \r\n \r\n + \ 08:57AM\r\n + \ An expected change in + rules in England could hit low-paid workers, the trade union says.] + delay=[100]\">Covid rules: Workers face terrible choice, + says TUC\r\n \r\n \r\n \r\n + \ 08:49AM\r\n + \ Andersen Capital Management + CIO Peter Andersen argues COVID, the Federal Reserve's expected rate hikes and + tensions between Russia and Ukraine are weighing on investors.] + delay=[100]\">Investment expert explains the '3 main factors' impacting + markets\r\n \r\n \r\n \r\n + \ 08:47AM\r\n + \ Directors recommend + a new offer from Kuwait-based National Aviation Services to shareholders.] + delay=[100]\">Menzies Aviation faces £560m takeover + by Kuwaiti rival\r\n \r\n \r\n \r\n + \ 08:42AM\r\n + \ Stock markets in the + Gulf ended mixed on Monday, as oil prices rose on fresh diplomatic efforts to + resolve the Ukraine crisis but banking shares drew profit taking.] + delay=[100]\">Gulf bourses end mixed, Saudi Aramco + hits record high\r\n \r\n \r\n \r\n + \ 08:31AM\r\n + \ Inflation Comes to Haunt + Money Managers as Hurdle Rate Climbs] delay=[100]\">Inflation Comes to Haunt Money Managers + as Hurdle Rate Climbs\r\n \r\n \r\n \r\n + \ 08:12AM\r\n + \ An alternative social + media platform backed by former President Donald Trump went live on Monday, + becoming available for download on Apple's App Store — but access to the service + appears limited for now.] delay=[100]\">Trump's social media app goes live\r\n + \ \r\n \r\n \r\n + \ 08:00AM\r\n + \ Sales of corporate loans + and derivatives tied to the Secured Overnight Financing Rate have picked up, + with Crocs among recent issuers.] delay=[100]\">SOFR Leads Race to Replace Libor as + Benchmark Rate\r\n \r\n \r\n \r\n + \ 07:55AM\r\n + \ The federal hate crimes + trial for the three White men convicted of the murder of Ahmaud Arbery, a 25-year-old + Black man, will soon go to the jury after testimony from more than 20 witnesses + -- several of whom spoke about racist messages used by the d...] + delay=[100]\">Closing arguments to begin in hate crimes + trial of Black jogger's killers\r\n \r\n \r\n \r\n + \ 07:36AM\r\n + \ Russian Assets Tumble + as Military Aid Report Spooks Traders] delay=[100]\">Russian Assets Tumble as Military Aid + Report Spooks Traders\r\n \r\n \r\n \r\n + \ 07:35AM\r\n + \ Deadly Nigerian Oil-Blast + Ship Has Peers All Over the World] delay=[100]\">Deadly Nigerian Oil-Blast Ship Has Peers + All Over the World\r\n \r\n \r\n \r\n + \ 07:20AM\r\n + \ Dubai’s DEWA May Boost + Post-IPO Dividend Payout to $1.69 Billion] delay=[100]\">Dubai’s DEWA May Boost Post-IPO Dividend + Payout to $1.69 Billion\r\n \r\n \r\n \r\n + \ 07:17AM\r\n + \ Sri Lankan shares ended + sharply lower on Monday, recording their worst day in over a year amid broad + based losses and steep declines in energy, industrial and financial firms.] + delay=[100]\">Sri Lanka shares fall 4.5%, all top + sectors register losses\r\n \r\n \r\n \r\n + \ 07:17AM\r\n + \ Welcome to the home + for real-time coverage of markets brought to you by Reuters reporters. You can + share your thoughts with us at markets.research@thomsonreuters.com] + delay=[100]\">LIVE MARKETS What next for eurozone + stability\r\n \r\n \r\n \r\n + \ 06:55AM\r\n + \ The South African rand + firmed in early trade on Monday, supported by improved risk appetite on news + that U.S. President Joe Biden and Russia's Vladimir Putin plan to hold a summit + on the Ukraine crisis.] delay=[100]\">South Africa's rand firms on improved + risk appetite\r\n \r\n \r\n \r\n + \ 06:37AM\r\n + \ Ministers of Arab oil-producing + countries gathered in Saudi Arabia Sunday, refusing pressure for OPEC+ to increase + production again amid coronavirus pandemic recovery efforts and as a potential + war looms in Europe.] delay=[100]\">OPEC+ rejects calls to increase production + again as Arab oil producers say group should stick to agreement\r\n + \ \r\n \r\n \r\n + \ 06:37AM\r\n + \ LIC Doubles Down on + March Listing Despite Stock Swings] delay=[100]\">LIC Doubles Down on March Listing Despite + Stock Swings\r\n \r\n \r\n \r\n + \ 06:17AM\r\n + \ After the market volatility + of the past week, traders and investors may be glad that markets will pause + for the Presidents Day holiday.] delay=[100]\">Presidents Day: Is the stock market + open?\r\n \r\n \r\n \r\n + \ 06:04AM\r\n + \ Welcome to the home + for real-time coverage of markets brought to you by Reuters reporters. You can + share your thoughts with us at markets.research@thomsonreuters.com] + delay=[100]\">LIVE MARKETS Record sales beat shows + Europe Inc has pricing power\r\n \r\n \r\n \r\n + \ 06:00AM\r\n + \ The Kremlin on Monday + said there were no concrete plans for a summit over Ukraine between Russian + President Vladimir Putin and his U.S. counterpart Joe Biden, after the French + president said the two leaders had agreed a meeting in principle.] + delay=[100]\">Kremlin says no concrete plans for summit + with Biden over Ukraine\r\n \r\n \r\n \r\n + \ 05:59AM\r\n + \ Kuwait Airways Adds + Small, Long-Range Jets in Airbus Order Swap] delay=[100]\">Kuwait Airways Adds Small, Long-Range + Jets in Airbus Order Swap\r\n \r\n \r\n \r\n + \ 05:37AM\r\n + \ World’s Top Condom Maker + Sees Rising Demand as Virus Rules Ease] delay=[100]\">World’s Top Condom Maker Sees Rising + Demand as Virus Rules Ease\r\n \r\n \r\n \r\n + \ 05:32AM\r\n + \ Shares in British sub-prime + lender Morses Club slumped 66% on Monday after a profit warning and announcement + that Chief Executive Paul Smith had left the company only days after selling + stock without telling the company in advance.] delay=[100]\">Morses Club shares slump after profit + warning and CEO's abrupt exit\r\n \r\n \r\n \r\n + \ 05:30AM\r\n + \ Even as the stock market + struggles to gain momentum, investors concerned about interest rates are finding + there are few other attractive options to put their cash to work.] + delay=[100]\">Exodus From Bond Funds Is Mitigating + Stock Market's Swoon\r\n \r\n \r\n \r\n + \ 05:24AM\r\n + \ JPMorgan Strategists + Say Stock Pessimism Is ‘In Vogue,’ But Wrong] delay=[100]\">JPMorgan Strategists Say Stock Pessimism + Is ‘In Vogue,’ But Wrong\r\n \r\n \r\n \r\n + \ 05:23AM\r\n + \ Sweden’s Hot Economy + Sparks Riksbank Split Over Stimulus Stance] delay=[100]\">Sweden’s Hot Economy Sparks Riksbank + Split Over Stimulus Stance\r\n \r\n \r\n \r\n + \ 05:18AM\r\n + \ Investors had hoped + that the new year would bring a reprieve from the regulatory crackdown that + punished shares in 2021. Those hopes may have been premature.] + delay=[100]\">Meituan Shows China Tech Isn't Delivering + Yet\r\n \r\n \r\n \r\n + \ 05:02AM\r\n + \ High energy prices in + Europe are upending people’s lives. While some are installing solar panels, + others are stoking their wood-burning stoves.] delay=[100]\">How Europeans Are Responding to Exorbitant + Gas and Power Bills\r\n \r\n \r\n \r\n + \ 05:00AM\r\n + \ Lawsuits from white + farmers have blocked $4 billion of pandemic aid that was allocated to Black + farmers in the American Rescue Plan.] delay=[100]\">Black Farmers Fear Foreclosure as Debt + Relief Remains Frozen\r\n \r\n \r\n \r\n + \ 05:00AM\r\n + \ “Everything was a lie,” + said one woman lured into a recent scam.] delay=[100]\">Crypto Scammers Target Dating Apps\r\n + \ \r\n \r\n \r\n + \ 04:49AM\r\n + \ India Is Set to See + a Normal Monsoon This Year, Skymet Predicts] delay=[100]\">India Is Set to See a Normal Monsoon + This Year, Skymet Predicts\r\n \r\n \r\n + \ \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n + \
06:55PM
America's Forgotten + Seven Million: Unlocking Financial Freedom Through Bitcoin\r\n\r\n Authored + by Ray Youssef via Bitcoin Magazine,\r\n\r\nBitcoin is about people, not price.\r\n\r\n\r\n\r\nWhile + the U.S. continues to focus on bitcoin as an investment as...
] + delay=[100]\">America's Forgotten Seven Million: Unlocking + Financial Freedom Through Bitcoin\r\n \r\n \r\n \r\n + \ 06:20PM\r\n + \ It 'Was Not Made To + Be Housing' - NYC Mayor Unveils Crackdown On Homeless 'Cancerous Sore' On Subway + System\r\n\r\n Following a string of violent crimes on the New York + subway system in recent weeks, including a knife attack on Feb. 17 in broa...] + delay=[100]\">It \"Was Not Made To Be Housing\" - + NYC Mayor Unveils Crackdown On Homeless \"Cancerous Sore\" On Subway System\r\n + \ \r\n \r\n \r\n + \ 06:08PM\r\n + \ Equty Futures Open Down + Hard; Gold, Oil, & Treasuries Spike\r\n\r\n As somewhat expected, + the general risk-off theme has hit market as they reopened.\r\n\r\nUS equity + futures extended their losses with Nasdaq down over 2.5%...\r\n\r\n\r\n\r\nTreasury + futu...] delay=[100]\">Equty Futures Open Down Hard; Gold, + Oil, & Treasuries Spike\r\n \r\n \r\n \r\n + \ 05:45PM\r\n + \ Border Crisis Can't + Wait Three More Years For A New Administration To Fix: Russ Vought\r\n\r\n Authored + by Harry Lee and Steve Lance via THe Epoch Times,\r\n\r\nThe situation at the + southern border has been so bad that it can’t wait three more yea...] + delay=[100]\">Border Crisis Can't Wait Three More + Years For A New Administration To Fix: Russ Vought\r\n \r\n + \ \r\n \r\n + \ 05:27PM\r\n + \ China Sanctions Raytheon, + Lockheed Over Taiwan Deal To 'Safeguard Its Sovereignty'\r\n\r\n The + big wildcard in today's dramatic escalation in tensions over east Ukraine, is + how and when Beijing will react to Putin's announcement recognizing th...] + delay=[100]\">China Sanctions Raytheon, Lockheed Over + Taiwan Deal To \"Safeguard Its Sovereignty\"\r\n \r\n + \ \r\n \r\n + \ 05:18PM\r\n + \ The Wall Street Journal + reports Putin Says Russia to Recognize Independence of Breakaway Regions in + Ukraine Russian President Vladimir Putin said he would recognize the independence + of two Russian-led breakaway regions of Ukraine, a move that threate...] + delay=[100]\">Russia Recognizes the Independence of + Two Breakaway Regions in the Ukraine\r\n \r\n \r\n \r\n + \ 05:15PM\r\n + \ Ottawa Mayor Proposes + To Sell Confiscated 'Freedom Convoy' Trucks \r\n\r\n Ottawa police + put an end to the 'Freedom Convoy' protest in the downtown district that lasted + for three weeks. On Friday and Saturday, officers arrested demonstrators a...] + delay=[100]\">Ottawa Mayor Proposes To Sell Confiscated + 'Freedom Convoy\" Trucks\r\n \r\n \r\n \r\n + \ 04:50PM\r\n + \ War Or Images Of War?\r\n\r\n + \ Authored by Edward Curtin via AntiWar.com,\r\n\r\nExperienced foreign + policy analysts such as Ray McGovern, Scott Ritter, and Pepe Escobar, while + agreeing that the Biden administration is clearly guilty of provoking R...] + delay=[100]\">War Or Images Of War?\r\n \r\n + \ \r\n \r\n + \ 04:25PM\r\n + \ Oil Prices Will Be Above + $100 For A 'Prolonged Period'\r\n\r\n As Bloomberg's Jake Lloyd-Smith + wrote last night, oil markets are so bullish at present that forecasts for $100/bbl + crude have become par for the course, which suggests that the th...] + delay=[100]\">Oil Prices Will Be Above $100 For A + \"Prolonged Period\"\r\n \r\n \r\n \r\n + \ 04:00PM\r\n + \ Ethereum Co-Founder + Welcomes 'Crypto Winter' To Flush Out Speculation, Says Canadian Tyranny Bolsters + Need For Decentralization\r\n\r\n It has not been a good few months + from the crypto world. After rampaging higher during the middle of last y...] + delay=[100]\">Ethereum Co-Founder Welcomes \"Crypto + Winter\" To Flush Out Speculation, Says Canadian Tyranny Bolsters Need For Decentralization\r\n + \ \r\n \r\n \r\n + \ 03:30PM\r\n + \ Europe Preparing To + Impose Sanctions On Russia\r\n\r\n Now that Putin has officially + recognized the separatists regions of Donetsk and Luhansk as independent, sovereign + states, warning that from this moment on the Ukraine must halt all militar...] + delay=[100]\">Europe Preparing To Impose Sanctions + On Russia\r\n \r\n \r\n \r\n + \ 12:53PM\r\n + \ Today, in the Calculated + Risk Real Estate Newsletter: Final Look at Local Housing Markets in JanuaryA + brief excerpt: This update adds Columbus, Illinois, Indiana, Miami, New York + and Phoenix.... Here is a summary of active listings for these housin...] + delay=[100]\">Final Look at Local Housing Markets + in January\r\n \r\n \r\n \r\n + \ 10:07AM\r\n + \ Tracking existing home + inventory is very important in 2022.Inventory usually declines in the winter, + and this is a new record low for this series.Click on graph for larger + image in graph gallery.This inventory graph is courtesy of Altos Research...] + delay=[100]\">Housing Inventory February 21st Update: + Inventory Down Slightly Week-over-week; New Record Low\r\n \r\n + \ \r\n \r\n + \ 10:00AM\r\n + \ Reader Robert asked + for a Covid fiscal and monetary comparison by country and how that tied + to inflation.  The chart shows half of what he asked for.  That data + is from the OECD. If you are interested in other countries, here's the OEC...] + delay=[100]\">Global CPI Surge Comparison by Country + in the Covid-19 Recovery\r\n \r\n \r\n \r\n + \ 09:43AM\r\n + \ Mondays are all about + financial adviser-related links here at Abnormal Returns. You can check out + last week’s links including a look at...] delay=[100]\">Adviser links: in pursuit of significance\r\n + \ \r\n \r\n \r\n + \ 08:50AM\r\n + \ These indicators are + mostly for travel and entertainment.    It is interesting to watch + these sectors recover as the pandemic subsides.There was a clear negative impact + from the omicron variant of COVID that is starting to ease.----- Airlin...] + delay=[100]\">Six High Frequency Indicators for the + Economy\r\n \r\n \r\n \r\n + \ 07:38AM\r\n + \ As a reminder, Marketsmith (by + Investor’s Business Daily) is now a sponsor of the weekly show. All the charts + you have been seeing in the videos and will continue to see are from Marketsmith. + They are offering my readers a three week trial for $19.95...] + delay=[100]\">Momentum Monday – Capital Preservation\r\n + \ \r\n \r\n \r\n + \ Feb-20\r\n + \ The mini support (the + clustering of prices at the lows) from January was breached on heavier volume + distribution for the Nasdaq and S&P. The Nasdaq has mostly negative + technicals with only the MACD left to turn negative. Friday finished with...] + delay=[100]\">Two days of selling threatens January + lows\r\n \r\n \r\n \r\n + \ Feb-20\r\n + \ I Feel Your Pain! President + Biden's New Message Shows He Feels Americans’ Pain.  In recent weeks, Mr. + Biden has made personal appeals in his speeches to families facing higher prices + for food, gasoline and cars. Addressing county officials this ...] + delay=[100]\">Biden Says \"I Feel Your Pain\", He + Means His Pain in Polls\r\n \r\n \r\n \r\n + \ Feb-20\r\n + \ Another ‘Last Ditch’ + Effort  Biden held last ditch efforts, then Germany, now France gets its + turn to stop Russia from invading Ukraine.   France24 reports Macron + Holds ‘Last Ditch’ Talks with Putin, US Warns Russia ‘Poised to Strike’ ...] + delay=[100]\">Another \"Last Ditch\" Effort to Stop + Russia in Repetitive Groundhog Day\r\n \r\n \r\n \r\n + \ Feb-20\r\n + \ Sunday links: a form + of selection] delay=[100]\">Sunday links: a form of selection\r\n + \ \r\n \r\n \r\n + \ Feb-20\r\n + \ Along with the monthly + housing starts for January last week, the Census Bureau released Housing Units + Started by Purpose and Design through Q4 2021.This graph shows the NSA quarterly + intent for four start categories since 1975: single family built fo...] + delay=[100]\">Quarterly Starts by Purpose and Design: + \"Built for rent\" Increasing\r\n \r\n \r\n \r\n + \ Feb-20\r\n + \ Good morning everyone.\nI + had a great ride yesterday and have a long morning rider with my regular Sunday + group this morning.\nThe weather in Phoenix continues to be perfect. There + was no winter.\nIn a couple weeks I head on the road for most of April ...] + delay=[100]\">Sunday Listens – The Anti-Conglomerate\r\n + \ \r\n \r\n \r\n + \ Feb-20\r\n + \ Thanks for checking + in with us this weekend. Here are the most clicked on items on Abnormal Returns + for the week ended...] delay=[100]\">Top clicks this week on Abnormal Returns\r\n + \ \r\n \r\n \r\n + \ Feb-20\r\n + \ Ally Financial: Big + Buybacks, Credit Quality, Attractive P/E] delay=[100]\">Ally Financial: Big Buybacks, Credit + Quality, Attractive P/E\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ Decision to Attack CNN + reports 'US Defense Secretary says it's apparent Russia has made a decision + and is moving into position to conduct an attack.' Probability of Major Escalation + With Russia Is Low Ukraine's Defense Minister, via US News and World...] + delay=[100]\">Ukraine Says Major Escalation Probability + is Low, US Says Russia Will Attack\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ At the Calculated Risk + Real Estate Newsletter this week: • Existing-Home Sales Increased to 6.50 million + in January• January Forecast and 4th Look at Local Housing Markets Lawler forecast, + Adding Austin, Boston, California, Colorado, Des Moines, Minn...] + delay=[100]\">Real Estate Newsletter Articles this + Week\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ Klepierre: Almost 'Business + As Usual' For This 6.5% Yielding Commercial REIT] delay=[100]\">Klepierre: Almost 'Business As Usual' + For This 6.5% Yielding Commercial REIT\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ On Saturdays we catch + up with the non-finance related items that we didn’t get to earlier in the week. + You can check...] delay=[100]\">Saturday links: second chances\r\n + \ \r\n \r\n \r\n + \ Feb-19\r\n + \ Noble Corporation: Company + Bags Large-Scale Contract Extension With Exxon Mobil - Buy] + delay=[100]\">Noble Corporation: Company Bags Large-Scale + Contract Extension With Exxon Mobil - Buy\r\n \r\n + \ \r\n \r\n + \ Feb-19\r\n + \ A coronavirus-focused + linkfest is still a weekly feature here at Abnormal Returns. Please stay safe, + get a booster shotat a vaccination site...] delay=[100]\">Coronavirus links: a modifiable health + risk\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ One Month ago I wrote + ‘The End of Fomo‘. The gist:\nThe last twelve to 18 months was a FOMO era.\nThey + will say that inflation and interest rates killed this great market run, but + as someone watching and writing about investing every day here I knew i...] + delay=[100]\">How Bad Is 2022? Is There an End in + Sight?\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ The key reports this + week are January New Home sales and the second estimate of Q4 GDP.Other key + reports include Case-Shiller house prices and Personal Income and Outlays for + January.For manufacturing, the February Richmond and Kansas City manufactur...] + delay=[100]\">Schedule for Week of February 20, 2022\r\n + \ \r\n \r\n \r\n + \ Feb-19\r\n + \ Which 6% To 8% Yields + To Buy And Sell Amid The Market Disruption] delay=[100]\">Which 6% To 8% Yields To Buy And Sell + Amid The Market Disruption\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ KKR: A More Challenging + 2022 For Private Equity] delay=[100]\">KKR: A More Challenging 2022 For Private + Equity\r\n \r\n \r\n \r\n + \ Feb-19\r\n + \ Apple: Thief] + delay=[100]\">Apple: Thief\r\n \r\n + \ \r\n \r\n + \ Feb-18\r\n + \ On COVID (focus on hospitalizations + and deaths):COVID Metrics  NowWeekAgoGoal Percent fully Vaccinated64.6%---≥70.0%1 + Fully Vaccinated (millions)214.6---≥2321 New Cases per Day3112,653188,440≤5,0002 + \ Hospitalized380,185107,772≤3,0002 Deaths p...] delay=[100]\">COVID Update: February 18, 2022: Falling + Cases, Deaths and Hospitalizations\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ From CoStar: STR: US + Hotel Industry Reaches Highest Performance Since DecemberU.S. weekly hotel performance + advanced to its highest levels since December, according to STR‘s latest data + through Feb. 12.Feb. 6-12, 2022 (percentage change from comparab...] + delay=[100]\">Hotels: Occupancy Rate Down 14% Compared + to Same Week in 2019\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ The Benefits of Running + Hot In a headline that seems like it could be from The Onion or the Babylon + Bee, please consider Chicago Fed president Charles Evans On the Benefits + of Running the Economy Hot\n In his speech Evans frequently refers to 'r*...] + delay=[100]\">Chicago Fed President Praises the \"Benefits + of Running the Economy Hot\"\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ Here are a few early + forecasts for Q1 GDP.From BofA: In the second release of 4Q GDP, we expect a + revision upwards to 7.5% qoq saar growth from 6.9%. We are now tracking 2.5% + for 1Q (prev 2.0%), following the retail sales beat (February 17 estimate)e...] + delay=[100]\">Q1 GDP Forecasts: Moving Up to Around + 2%\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ Friday links: fully + experiencing things] delay=[100]\">Friday links: fully experiencing things\r\n + \ \r\n \r\n \r\n + \ Feb-18\r\n + \ Fridays are all about + podcast links here at Abnormal Returns. You can check out last week’s links + including a look at the...] delay=[100]\">Podcast links: market crossovers\r\n + \ \r\n \r\n \r\n + \ Feb-18\r\n + \ Today, in the CalculatedRisk + Real Estate Newsletter: Existing-Home Sales Increased to 6.50 million in JanuaryExcerpt: + This graph shows existing home sales by month for 2021 and 2022.Sales declined + 2.3% year-over-year compared to January 2021. This w...] + delay=[100]\">More Analysis on January Existing Home + Sales\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ 2 Crushed Dividend Champions + Worth Saving] delay=[100]\">2 Crushed Dividend Champions Worth Saving\r\n + \ \r\n \r\n \r\n + \ Feb-18\r\n + \ Nvidia Earnings: Showing + The Market Still Needs To Recalibrate] delay=[100]\">Nvidia Earnings: Showing The Market + Still Needs To Recalibrate\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ Buying The REIT Correction] + delay=[100]\">Buying The REIT Correction\r\n + \ \r\n \r\n \r\n + \ Feb-18\r\n + \ $SPX S&P 500 I expect + those green boxes representing unfilled gaps to easily fill. That bottom gap + would represent a 30% decline from the top. It will easily fill, in due time. + What is a Gap? A gap up occurs when the market or an individual issu...] + delay=[100]\">S&P 500 - What is the Pain Threshold + for the Fed and Traders?\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ Palantir Quietly Came + Good - It's Now A Buy On Pure Fundamentals] delay=[100]\">Palantir Quietly Came Good - It's Now + A Buy On Pure Fundamentals\r\n \r\n \r\n \r\n + \ Feb-18\r\n + \ Happy Friday.\nI was + invited back on Bloomberg’s Odd Lots hosted by Joe Weisenthal and Tracey Alloway + to discuss all things private and public markets. What we honed in on was:\nWhy + the growth stocks plunged\nThe Great Roundtrip\nWhat’s happening with p...] + delay=[100]\">My Odd Lots Appearance on Bloomberg\r\n + \ \r\n \r\n \r\n + \ Feb-17\r\n + \ What is a Gap? A gap + up occurs when the market or an individual issue opens higher than the high + on the previous day.A gap down occurs when the market or an individual issue + opens lower than the low on the previous day.I am a big believer in the theo...] + delay=[100]\">Newmont Mining Corporation, One Gap + Left to Fill, And it Will.\r\n \r\n \r\n \r\n + \ Feb-17\r\n + \ Economists Expectations + The Bloomberg Econoday economists' consensus opinion was for housing permits + to rise slightly from 1.702 million units, seasonally-adjusted annualized (SAAR) + to 1.708 million units.The Econoday consensus was for permits to dec...] + delay=[100]\">Housing Starts Unexpectedly Weaken But + Permits Soar to Recovery High\r\n \r\n \r\n \r\n + \ Feb-17\r\n + \ Thursday links: making + stuff simple] delay=[100]\">Thursday links: making stuff simple\r\n + \ \r\n \r\n \r\n + \ Feb-17\r\n + \ Thursdays are all about + longform links on Abnormal Returns. You can check out last week’s linkfest including + a look at the hard...] delay=[100]\">Longform links: a weirder world\r\n + \ \r\n \r\n \r\n + \ Feb-17\r\n + \ The Fed Put The Greenspan + Put Danielle asked an interesting question, especially in light of the 'Greenspan + Put'.  Greenspan put was the moniker given to the policies implemented + by Alan Greenspan during his tenure as Federal Reserve (Fed) Chair...] + delay=[100]\">Is the Fed in Control of Anything? If + So, What? At What Cost?\r\n \r\n \r\n \r\n + \ Feb-17\r\n + \ Panic with Friends – + Investing for Profit and Joy\n \n \n\nI’m excited to bring one of my favorite + guests back for his second round of Panic: Yoshi Yokokowa, founder of Alpaca, + a Social Leverage Fund III portfolio company. Coming to you all the way from + ...] delay=[100]\">Alpaca Founder Yoshi Yokokowa on Fintech, + ReCaps, and the Stress of Losing Momentum at an Early Stage Startup\r\n + \ \r\n \r\n \r\n + \ Feb-16\r\n + \ We haven't yet a higher + low from Monday's action, but today's trading sided more with demand than profit + taking. There are small victories to note, even if today's action remains inside + the trading range for February. The Nasdaq effectively pair...] + delay=[100]\">Markets Enjoy Some Stability\r\n + \ \r\n \r\n \r\n + \ Feb-16\r\n + \ Wednesday links: the + common denominator] delay=[100]\">Wednesday links: the common denominator\r\n + \ \r\n \r\n \r\n + \ Feb-16\r\n + \ We had a big win at + Social Leverage today as Facebook closed the acquisition of Kustomer a fund + II portfolio company. We invested back in 2016.\nFacebook initially reached + an agreement to acquire Kustomer in November of 2020, but the deal was subject...] + delay=[100]\">Fund II Portfolio Company Kustomer Acquired + By Facebook Parent Company Meta\r\n \r\n \r\n \r\n + \ Feb-15\r\n + \ I think I have been + pretty clear in how unclear my writing has been lately about the markets and + investing…I am confused.\nMy day job and passion and career is seed investing. + \ I am not so confused about seed investing these days…prices seem VERY high...] + delay=[100]\">I am Confused….It Is OK To Be Confused\r\n + \ \r\n \r\n \r\n + \ Feb-14\r\n + \ There wasn't a whole + to today's action - which is probably a good thing.  There was no follow + through lower, instead markets traded in a more neutral manner with a set of + narrow range doji. The Nasdaq held on to Friday's lows with a new 'se...] + delay=[100]\">Trading Action Tightens As Selling Stalls + (a little)\r\n \r\n \r\n \r\n + \ Feb-14\r\n + \ This post Who Will Blink + First? appeared first on Daily Reckoning.\nThe Fed’s consistent incompetence + could create more inflation, a stock market crash and recession…\nThe post Who + Will Blink First? appeared first on Daily Reckoning.] delay=[100]\">Who Will Blink First?\r\n \r\n + \ \r\n \r\n + \ Feb-14\r\n + \ Happy Monday.\nAs a + reminder, Marketsmith (by Investor’s Business Daily) is now a sponsor of the + weekly show. All the charts you have been seeing in the videos and will continue + to see are from Marketsmith. They are offering my readers a three week tr...] + delay=[100]\">Momentum Monday – Adios Growth\r\n + \ \r\n \r\n \r\n + \ Feb-13\r\n + \  In the first post + in this series, we took a look at how traders often lose their ideas when their + stop levels are hit.  In this post, we'll examine a different, but related, + cognitive mistake.  Many traders will place trades based upo...] + delay=[100]\">Common Mistakes Traders Make - 2: Acting + Before Understanding\r\n \r\n \r\n \r\n + \ Feb-13\r\n + \ The bounce off January + swing lows tapped out Friday as traders were keen to take profits on higher + volume distribution. In the case of the S&P there was a confirmed 'sell' + trigger in relative performance over the Russell 2000 along with an O...] + delay=[100]\">The bounce tails off as sellers re-emerge\r\n + \ \r\n \r\n \r\n + \ Feb-13\r\n + \ Happy Sunday.\nMy feeds + are being dominated by Russia, Bitcoin and NFT’s at the moment. They have been + dominated by Bitcoin and NFT’s for a year so what is up with this Russia place?\nI + have never been to Russia which seems to be a place for unhappy p...] + delay=[100]\">Sunday Reads…Russia…Inflation…Facebook + Problems…Defense…Jobs\r\n \r\n \r\n \r\n + \ Feb-12\r\n + \ This post Canada Shocks + the World appeared first on Daily Reckoning.\nCanadians are generally a non-confrontational + people, who are slow to anger. Yet even the Canadians have had it with mandates, + and truckers have been staging a massive protest. Toda...] + delay=[100]\">Canada Shocks the World\r\n + \ \r\n \r\n \r\n + \ Feb-12\r\n + \ I am back in Phoenix.\nWhat + a week.\nThanks to my buddy Paul Traub for putting this together (his 70th birthday + party treat). Here we are on the first tee of Spyglass:\n\nHere is the whole + group of twelve (we are still looking for 3 of these guys last s...] + delay=[100]\">Home Sweet Home and What A Week\r\n + \ \r\n \r\n \r\n + \ Feb-11\r\n + \ This post “Don’t Blame + Me!” appeared first on Daily Reckoning.\nVictory has a hundred fathers while + defeat is an orphan, as the old saying goes. Today, Jeffrey Tucker shows you + how elites and petty bureaucrats are refusing to accept responsibility for...] + delay=[100]\">“Don’t Blame Me!”\r\n \r\n \r\n \r\n + \ Feb-10\r\n + \ This post The Mathematical + Cycles of History appeared first on Daily Reckoning.\n“We're at peak centralization, + and we're moving toward decentralization”…\nThe post The Mathematical Cycles + of History appeared first on Daily Reckoning.] delay=[100]\">The Mathematical Cycles of History\r\n \r\n + \ \r\n \r\n + \ Feb-09\r\n + \ This post Three Revolutionary + Cycles appeared first on Daily Reckoning.\nAs you likely know, The Daily Reckoning + is not a mainstream publication. We often venture out to the far ends of the + bell curve to discuss topics that aren’t discussed elsewhere....] + delay=[100]\">Three Revolutionary Cycles\r\n + \ \r\n \r\n \r\n + \ Feb-08\r\n + \ Following the initial + rebound it has been a struggle between buyers and sellers in asserting dominance + over markets. In the case of the Nasdaq, the index has managed to retain + support of 13,885 as it looks to push beyond near term 20-day MA resi...] + delay=[100]\">Indices return to the upside as battle + between bulls and bears continue\r\n \r\n \r\n \r\n + \ Feb-08\r\n + \ This post Winter Storm + Warning appeared first on Daily Reckoning.\nToday we turn our focus from the + passing weather. It is the long view, the overall view — the seasonal view — + that commands our attention...\nThe post Winter Storm Warning appeared firs...] + delay=[100]\">Winter Storm Warning\r\n \r\n + \ \r\n \r\n + \ Feb-07\r\n + \ This post U.S. Attains + Frightening Milestone appeared first on Daily Reckoning.\nThe United States + finally managed to find itself with $30 trillion of government debt...\nThe + post U.S. Attains Frightening Milestone appeared first on Daily Reckoning.] + delay=[100]\">U.S. Attains Frightening Milestone\r\n + \ \r\n \r\n \r\n + \ Feb-06\r\n + \ Trading volume wasn't + that high on Friday, but end-of-week buying helped prevent an acceleration of + losses (and the fear) generated by Meta's loss in ad revenue.The January swing + lows is looking more solid in the Nasdaq. There is a bit of a mini-supp...] + delay=[100]\">Solid defense Friday helped deflect + Meta losses\r\n \r\n \r\n \r\n + \ Feb-06\r\n + \  Yes, it's true + that problems with our mindset can interfere with good trading.  It's equally + true that bad trading can interfere with our mindset.  In coming posts, + I will highlight mistakes I see traders make and what we can do about...] + delay=[100]\">Common Mistakes Traders Make - 1: Losing + Ideas When We Stop Out Of Trades\r\n \r\n \r\n \r\n + \ Feb-05\r\n + \ This post No Precedent + in Our Lifetimes appeared first on Daily Reckoning.\nThe best way to discern + the direction of the real economy is to get out and experience it. Jeffrey Tucker + has been doing just that. Today he shows you what he’s found, and it ...] + delay=[100]\">No Precedent in Our Lifetimes\r\n + \ \r\n \r\n \r\n + \ Feb-04\r\n + \ This post Just Another + Government Lie appeared first on Daily Reckoning.\nOn Wednesday we razzed economists + for preposterously overguessing — by 481,000 — January private-sector payrolls. + Today we must yank their whiskers once again. For they have man...] + delay=[100]\">Just Another Government Lie\r\n + \ \r\n \r\n \r\n + \ Feb-02\r\n + \ After some disappointing + after hour earnings report we may see this market bounce move towards the next + step, the confirmation test of the lows.  Will markets confirm the January + lows as a swing low, or will markets evolve into some broader meas...] + delay=[100]\">Retest of January Lows to Commence\r\n + \ \r\n \r\n \r\n + \ Feb-02\r\n + \ This post Unbelievable + appeared first on Daily Reckoning.\nPayrolls processing outfit ADP informs us + that the United States economy failed to add 180,000 private payrolls last month…\nThe + post Unbelievable appeared first on Daily Reckoning.] delay=[100]\">Unbelievable\r\n + \ \r\n \r\n \r\n + \ Jan-31\r\n + \ Buyers stewed over the + weekend and started Monday with a period of buying across lead inside.  + Buying volume was down on yesterday's (and recent buying) and given the Nasdaq + gained over 3% it was a little disappointing not to see volume match th...] + delay=[100]\">And so it begins, markets initiate a + rally\r\n \r\n \r\n \r\n + \ Jan-31\r\n + \  An important key + to psychological change is turning desired patterns of thought, feeling, and + action into positive habit patterns.  We don't do this through motivation.  + We do this by finding ways of being who we want to be every sing...] + delay=[100]\">How to Change Your Life\r\n + \ \r\n \r\n \r\n + \ Jan-30\r\n + \ Friday was a good day + for bulls and a nice finish to the week.  Best of the action probably belonged + to the Nasdaq as it bounced off the 200-day MA. The index closed above Thursday's + open in what is shaping up as a week long swing low. Technical...] + delay=[100]\">Nasdaq looks to reaffirm 200-day MA + support\r\n \r\n \r\n \r\n + \ Jan-27\r\n + \ Monday's buying should + have followed with gaps higher and the start of a recovery rally.  Instead, + we had no gap, a tentative bounce, and now a move into the spike lows of Monday + - rarely a good sign for bulls.The Nasdaq is easing back to its 20...] + delay=[100]\">Indices looking to challenge Monday's + lows\r\n \r\n \r\n \r\n + \ Jan-23\r\n + \  I have had a record + number of people reach out to me asking for coaching help.  Why?  + The majority have developed their trading in a bull market and have learned + to buy market dips.  And so they have bought, and bought, and bough...] + delay=[100]\">Why Am I Losing Money In The Market?\r\n + \ \r\n \r\n \r\n + \ Jan-14\r\n + \  Well, it's been + about a three-month break from blogging and social media, and I have to say + it's been rejuvenating.  In any life activity that is important, there + is a time for stepping back, taking a good look at what you're doing, and ma...] + delay=[100]\">Making a Fresh Start: Lessons From + Molly Ruth\r\n \r\n \r\n \r\n + \ Nov-21\r\n + \ The new Q3 issue of + our quarterly newsletter was just released today: see what stocks top hedge + funds were buying, selling and why.  Subscribers please login at www.hedgefundwisdom.com + to download it.Inside the New Q3 Issue:- Reveals the latest ...] + delay=[100]\">New Q3 Issue Just Released Today\r\n + \ \r\n \r\n \r\n + \ Oct-11\r\n + \  Thanks for all + the interest in TraderFeed, my books, and the Three Minute Trading Coach videos.  + There's quite a library of material available there, and a lot more on performance + psychology through the Forbes articles and the spiritu...] + delay=[100]\">Taking A Break From Blogging And Social + Media\r\n \r\n \r\n \r\n + \ Oct-04\r\n + \  A beginning trader + starts with eagerness and passion and focuses on winning.  The beginner's + great fear is to miss opportunity and so the beginner overtrades and eventually + takes significant losses.  Many traders never move beyond thi...] + delay=[100]\">Stages In A Trader's Development\r\n + \ \r\n \r\n \r\n + \ Sep-26\r\n + \  It has become + clear to me that clarity underlies my best trading.If I sit and sit and watch + and watch and process and process what the market is doing, eventually it will + become clear what is going on.  I can see that sellers are active an...] + delay=[100]\">Trading With Clarity\r\n \r\n + \ \r\n \r\n + \ Sep-19\r\n + \  What we think + about before we put on a trade helps determine our mindset during the life of + the trade.  When I am trading well, my thinking before the trade focuses + on two topics:1)  What will tell me the trade is wrong?  - Knowi...] + delay=[100]\">Two Great Questions To Ask During A + Trade\r\n \r\n \r\n + \ \r\n \r\n
\n
\r\n + \
\r\n
\r\n affiliate\r\n + \ \r\n advertise\r\n \r\n contact\r\n + • \r\n privacy\r\n + \ \r\n help
Do not sell my personal information\r\n
\r\n + \ Quotes delayed 15 minutes for NASDAQ, + and 20 minutes for NYSE and AMEX.\r\n
\r\n Copyright + © 2007-2022 FINVIZ.com. All Rights Reserved.\r\n
\r\n + \ \r\n + \ \r\n \n\n\n
\r\n
\r\n\t\t\t \r\n\r\n + \ \r\n\r\n
\r\n\t\t\t

Upgrade + your FINVIZ experience

\r\n

\r\n Join + thousands of traders who make more informed decisions with our premium + features.\r\n Real-time quotes, advanced visualizations, + backtesting, and much more.\r\n

\r\n + \ Learn + more about FINVIZ*Elite\r\n
\r\n
\r\n + \
\n\n\n" headers: Alt-Svc: - - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400 + - h3=":443"; ma=86400, h3-29=":443"; ma=86400 Cache-Control: - no-cache Cf-Cache-Status: - DYNAMIC Cf-Ray: - - 5e161e84bfd17fa4-ORD - Cf-Request-Id: - - 05c1b166f200007fa449199200000001 + - 6e13ead3cfeb714a-YUL Content-Type: - text/html; charset=utf-8 Date: - - Tue, 13 Oct 2020 03:54:25 GMT + - Mon, 21 Feb 2022 23:57:29 GMT Expect-Ct: - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct" - Expires: - - "-1" - Pragma: - - no-cache + Request-Context: + - appId=cid-v1:bdd405ef-7a83-4f9a-9228-0107d7f4bc90 Server: - cloudflare Set-Cookie: - - __cfduid=d2f01619b5bcf4f408639aac0a0eca31c1602561265; expires=Thu, 12-Nov-20 03:54:25 GMT; path=/; domain=.finviz.com; HttpOnly; SameSite=Lax - - preventRedirectLoop=false; domain=.finviz.com; expires=Mon, 12-Oct-2020 03:54:25 GMT; path=/ + - preventRedirectLoop=false; expires=Sun, 20 Feb 2022 23:57:29 GMT; domain=.finviz.com; + path=/ Vary: - Accept-Encoding - X-Aspnet-Version: - - 4.0.30319 X-Frame-Options: - SAMEORIGIN X-Powered-By: - ASP.NET + - ARR/3.0 + - ASP.NET status: 200 OK code: 200 duration: "" diff --git a/news/news.go b/news/news.go index 3f724ce..a4a2806 100644 --- a/news/news.go +++ b/news/news.go @@ -7,7 +7,7 @@ package news import ( "fmt" - "io/ioutil" + "io" "net" "net/http" "strings" @@ -88,7 +88,7 @@ func (c *Client) GetNews(view string) (*dataframe.DataFrame, error) { } defer resp.Body.Close() - body, err := ioutil.ReadAll(resp.Body) + body, err := io.ReadAll(resp.Body) if err != nil { return nil, err } @@ -113,9 +113,9 @@ func (c *Client) GetNews(view string) (*dataframe.DataFrame, error) { func GenerateURL(view string) (string, error) { switch view { - case "by_time": + case "time": return APIURL, nil - case "by_source": + case "source": return fmt.Sprintf("%s?v=2", APIURL), nil default: return "", fmt.Errorf("error view '%s' not found", view) @@ -124,9 +124,9 @@ func GenerateURL(view string) (string, error) { func Scrape(view string, doc *goquery.Document) ([][]string, error) { switch view { - case "by_time": + case "time": return ByTimeScrape(doc) - case "by_source": + case "source": return BySourceScrape(doc) default: return nil, fmt.Errorf("error view '%s' not found", view) @@ -136,6 +136,12 @@ func Scrape(view string, doc *goquery.Document) ([][]string, error) { func ByTimeScrape(doc *goquery.Document) ([][]string, error) { var newsDataSlice []map[string]interface{} + location, err := time.LoadLocation("EST5EDT") + if err != nil { + return nil, err + } + today := time.Now().In(location) + doc.Find("#news > div").Children().Eq(1).Find("tbody").Eq(0).Children().Eq(1).Children().Each(func(i int, newsColumn *goquery.Selection) { var newsType string @@ -149,7 +155,17 @@ func ByTimeScrape(doc *goquery.Document) ([][]string, error) { if i != 1 { newsColumn.Find("tbody").Eq(0).Children().Each(func(j int, newsItem *goquery.Selection) { var rawNewsData = make(map[string]interface{}) - rawNewsData["Article Date"] = newsItem.Children().Eq(1).Text() + var date time.Time + + rawDate := newsItem.Children().Eq(1).Text() + if date, err = time.Parse("Jan-02-2006 MST", fmt.Sprintf("%s-%d EST", rawDate, today.Year())); err == nil { + rawNewsData["Article Date"] = date.Format(time.RFC3339) + } else if date, err = time.Parse("January-02-2006 3:04PM MST", fmt.Sprintf("%s-%d-%d %s EST", today.Month(), today.Day(), today.Year(), rawDate)); err == nil { + rawNewsData["Article Date"] = date.Format(time.RFC3339) + } else { + rawNewsData["Article Date"] = rawDate + } + rawNewsData["Article Title"] = newsItem.Children().Eq(2).Children().Eq(0).Text() rawNewsData["Article URL"] = newsItem.Children().Eq(2).Children().Eq(0).AttrOr("href", "") if classes := newsItem.Children().Eq(0).AttrOr("class", ""); classes != "" { @@ -172,6 +188,12 @@ func ByTimeScrape(doc *goquery.Document) ([][]string, error) { func BySourceScrape(doc *goquery.Document) ([][]string, error) { var newsDataSlice []map[string]interface{} + location, err := time.LoadLocation("EST5EDT") + if err != nil { + return nil, err + } + today := time.Now().In(location) + for tableIndex := 2; tableIndex <= 4; tableIndex++ { var newsType string @@ -195,7 +217,17 @@ func BySourceScrape(doc *goquery.Document) ([][]string, error) { sourceURL = sourceItem.AttrOr("href", "") } else if k > 1 { var rawNewsData = make(map[string]interface{}) - rawNewsData["Article Date"] = item.Children().Eq(0).Text() + var date time.Time + + rawDate := item.Children().Eq(0).Text() + if date, err = time.Parse("Jan-02-2006 MST", fmt.Sprintf("%s-%d EST", rawDate, today.Year())); err == nil { + rawNewsData["Article Date"] = date.Format(time.RFC3339) + } else if date, err = time.Parse("January-02-2006 3:04PM MST", fmt.Sprintf("%s-%d-%d %s EST", today.Month(), today.Day(), today.Year(), rawDate)); err == nil { + rawNewsData["Article Date"] = date.Format(time.RFC3339) + } else { + rawNewsData["Article Date"] = rawDate + } + rawNewsData["Article Title"] = item.Children().Eq(1).Find("a").Text() rawNewsData["Article URL"] = item.Children().Eq(1).Children().Eq(0).AttrOr("href", "") rawNewsData["Source Name"] = sourceName diff --git a/news/news_test.go b/news/news_test.go index 27d4ffa..3d49ba7 100644 --- a/news/news_test.go +++ b/news/news_test.go @@ -16,7 +16,7 @@ import ( "github.com/dnaeon/go-vcr/recorder" "github.com/stretchr/testify/require" - "github.com/d3an/finviz/utils" + "github.com/d3an/finviz/utils/test" ) func newTestClient(config *Config) *Client { @@ -24,7 +24,7 @@ func newTestClient(config *Config) *Client { return &Client{ Client: &http.Client{ Timeout: 30 * time.Second, - Transport: utils.AddHeaderTransport(config.recorder), + Transport: test.AddHeaderTransport(config.recorder), }, } } @@ -47,11 +47,11 @@ func TestGenerateURL(t *testing.T) { expected string }{ { - view: "by_time", + view: "time", expected: APIURL, }, { - view: "by_source", + view: "source", expected: fmt.Sprintf("%s?v=2", APIURL), }, } @@ -72,13 +72,13 @@ func TestGetNews(t *testing.T) { }{ { cassettePath: "cassettes/source_news_view", - view: "by_source", + view: "source", expectedColCount: 6, expectedColNames: []string{"Article Date", "Article Title", "Article URL", "Source Name", "Source URL", "News Type"}, }, { cassettePath: "cassettes/time_news_view", - view: "by_time", + view: "time", expectedColCount: 5, expectedColNames: []string{"Article Date", "Article Title", "Article URL", "Source Name", "News Type"}, }, diff --git a/quote/quote.go b/quote/quote.go index bfbab0d..f8a5f80 100644 --- a/quote/quote.go +++ b/quote/quote.go @@ -7,7 +7,7 @@ package quote import ( "fmt" - "io/ioutil" + "io" "net" "net/http" "strings" @@ -71,6 +71,10 @@ func (c *Client) Do(req *http.Request) (*http.Response, error) { return c.Client.Do(req) } +func (c *Client) RandomizeUserAgent() { + c.config.userAgent = uarand.GetRandom() +} + func GenerateURL(ticker string) (string, error) { return fmt.Sprintf("%s?t=%s&ty=c&p=d&b=1", APIURL, strings.ToUpper(ticker)), nil } @@ -164,7 +168,7 @@ func (c *Client) getData(ticker string, wg *sync.WaitGroup, result *chan respons } defer resp.Body.Close() - body, err = ioutil.ReadAll(resp.Body) + body, err = io.ReadAll(resp.Body) if err != nil { return backoff.Permanent(err) } @@ -172,6 +176,9 @@ func (c *Client) getData(ticker string, wg *sync.WaitGroup, result *chan respons if resp.StatusCode == http.StatusNotFound { warning = fmt.Errorf("resource not found") return nil + } else if resp.StatusCode == http.StatusForbidden && string(body) == "error code: 1010" { + c.RandomizeUserAgent() + return fmt.Errorf("blocked by Cloudflare, status code: '%d', body: '%s'", resp.StatusCode, string(body)) } else if resp.StatusCode != http.StatusOK { return fmt.Errorf("failed to get url: '%s', status code: '%d', body: '%s'", url, resp.StatusCode, string(body)) } diff --git a/quote/quote_test.go b/quote/quote_test.go index 1d1db24..5d72aad 100644 --- a/quote/quote_test.go +++ b/quote/quote_test.go @@ -17,6 +17,7 @@ import ( "github.com/stretchr/testify/require" "github.com/d3an/finviz/utils" + "github.com/d3an/finviz/utils/test" ) func newTestClient(config *Config) *Client { @@ -24,7 +25,7 @@ func newTestClient(config *Config) *Client { return &Client{ Client: &http.Client{ Timeout: 30 * time.Second, - Transport: utils.AddHeaderTransport(config.recorder), + Transport: test.AddHeaderTransport(config.recorder), }, } } @@ -63,7 +64,7 @@ func TestGenerateURL(t *testing.T) { } } -func TestFixQuoteIssue(t *testing.T) { +func TestQuoteResultRefactor(t *testing.T) { values := []struct { ticker string cassettePath string diff --git a/screener/screener.go b/screener/screener.go index 42b9979..781f52f 100644 --- a/screener/screener.go +++ b/screener/screener.go @@ -7,7 +7,7 @@ package screener import ( "fmt" - "io/ioutil" + "io" "net" "net/http" "strconv" @@ -68,6 +68,10 @@ func (c *Client) Do(req *http.Request) (*http.Response, error) { return c.Client.Do(req) } +func (c *Client) RandomizeUserAgent() { + c.config.userAgent = uarand.GetRandom() +} + type scrapeResult struct { Results []map[string]interface{} Keys []string @@ -178,12 +182,15 @@ func (c *Client) getData(url string, wg *sync.WaitGroup, scr *chan scrapeResult) } defer resp.Body.Close() - body, err = ioutil.ReadAll(resp.Body) + body, err = io.ReadAll(resp.Body) if err != nil { return backoff.Permanent(err) } - if resp.StatusCode != http.StatusOK { + if resp.StatusCode == http.StatusForbidden && string(body) == "error code: 1010" { + c.RandomizeUserAgent() + return fmt.Errorf("blocked by Cloudflare, status code: '%d', body: '%s'", resp.StatusCode, string(body)) + } else if resp.StatusCode != http.StatusOK { return fmt.Errorf("failed to get url: '%s', status code: '%d', body: '%s'", url, resp.StatusCode, string(body)) } diff --git a/screener/screener_test.go b/screener/screener_test.go index 95f2876..5980ee7 100644 --- a/screener/screener_test.go +++ b/screener/screener_test.go @@ -18,6 +18,7 @@ import ( "github.com/stretchr/testify/require" "github.com/d3an/finviz/utils" + "github.com/d3an/finviz/utils/test" ) func newTestClient(config *Config) *Client { @@ -25,7 +26,7 @@ func newTestClient(config *Config) *Client { return &Client{ Client: &http.Client{ Timeout: 30 * time.Second, - Transport: utils.AddHeaderTransport(config.recorder), + Transport: test.AddHeaderTransport(config.recorder), }, config: *config, } @@ -45,6 +46,8 @@ func newTestClient(config *Config) *Client { } func TestGetScreenerResultsLotOfPages(t *testing.T) { + t.SkipNow() + values := []struct { cassettePath string url string @@ -80,6 +83,8 @@ func TestGetScreenerResultsLotOfPages(t *testing.T) { } func TestGetScreenerResults(t *testing.T) { + t.SkipNow() + values := []struct { cassettePath string url string diff --git a/utils/cli.go b/utils/cli.go new file mode 100644 index 0000000..3cbdd61 --- /dev/null +++ b/utils/cli.go @@ -0,0 +1,62 @@ +package utils + +import ( + "fmt" + "path/filepath" + "strings" + + "github.com/go-gota/gota/dataframe" +) + +type Enum struct { + Allowed []string + Value string +} + +// NewEnum give a list of allowed flag parameters, where the second argument is the default +func NewEnum(allowed []string, d string) *Enum { + return &Enum{ + Allowed: allowed, + Value: d, + } +} + +func (a Enum) String() string { + return a.Value +} + +func (a *Enum) Set(p string) error { + isIncluded := func(opts []string, val string) bool { + for _, opt := range opts { + if val == opt { + return true + } + } + return false + } + if !isIncluded(a.Allowed, p) { + return fmt.Errorf("%s is not included in %s", p, strings.Join(a.Allowed, ",")) + } + a.Value = p + return nil +} + +func (a *Enum) Type() string { + return "string" +} + +func ExportData(df *dataframe.DataFrame, outFile string) error { + if outFile == "" { + PrintFullDataFrame(df) + return nil + } + + switch filepath.Ext(outFile) { + default: + fallthrough + case ".csv": + return ExportCSV(df, outFile) + case ".json": + return ExportJSON(df, outFile) + } +} diff --git a/utils/client.go b/utils/client.go deleted file mode 100644 index 2069bc4..0000000 --- a/utils/client.go +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2022 James Bury. All rights reserved. -// Project site: https://github.com/d3an/finviz -// Use of this source code is governed by a MIT-style license that -// can be found in the LICENSE file for the project. - -package utils - -import "net/http" - -// headerTransport implements a Transport that can have its RoundTripper interface modified -type headerTransport struct { - T http.RoundTripper -} - -// RoundTrip implements the RoundTripper interface with a custom user-agent -func (adt *headerTransport) RoundTrip(req *http.Request) (*http.Response, error) { - return adt.T.RoundTrip(req) -} - -// AddHeaderTransport adds the an HTTP recorder to the request for testing purposes -func AddHeaderTransport(t http.RoundTripper) *headerTransport { - if t == nil { - t = http.DefaultTransport - } - return &headerTransport{t} -} diff --git a/utils/test/utils.go b/utils/test/utils.go new file mode 100644 index 0000000..94c7177 --- /dev/null +++ b/utils/test/utils.go @@ -0,0 +1,59 @@ +package test + +import ( + "net" + "net/http" + "time" + + "github.com/dnaeon/go-vcr/recorder" +) + +// headerTransport implements a Transport that can have its RoundTripper interface modified +type headerTransport struct { + T http.RoundTripper +} + +// RoundTrip implements the RoundTripper interface with a custom user-agent +func (adt *headerTransport) RoundTrip(req *http.Request) (*http.Response, error) { + return adt.T.RoundTrip(req) +} + +// AddHeaderTransport adds an HTTP recorder to the request for testing purposes +func AddHeaderTransport(t http.RoundTripper) *headerTransport { + if t == nil { + t = http.DefaultTransport + } + return &headerTransport{t} +} + +type Config struct { + Recorder *recorder.Recorder + UserAgent string +} + +type Client struct { + *http.Client + config Config +} + +func NewClient(config *Config) *Client { + if config != nil { + return &Client{ + Client: &http.Client{ + Timeout: 30 * time.Second, + Transport: AddHeaderTransport(config.Recorder), + }, + } + } + return &Client{ + Client: &http.Client{ + Timeout: 30 * time.Second, + Transport: &http.Transport{ + DialContext: (&net.Dialer{ + Timeout: 30 * time.Second, + }).DialContext, + TLSHandshakeTimeout: 30 * time.Second, + }, + }, + } +} diff --git a/utils/utils.go b/utils/utils.go index 49edf5b..6085b26 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -10,7 +10,6 @@ import ( "encoding/json" "fmt" "io" - "io/ioutil" "os" "strconv" "strings" @@ -95,7 +94,7 @@ func GenerateDocument(html interface{}) (doc *goquery.Document, err error) { } case io.ReadCloser: - byteArray, err := ioutil.ReadAll(html) + byteArray, err := io.ReadAll(html) if err != nil { return nil, err } diff --git a/utils/utils_tests.go b/utils/utils_test.go similarity index 100% rename from utils/utils_tests.go rename to utils/utils_test.go