by Aleksandar Urošević
4.4 (21 reviews)
Stock Ticker
Easy add customizable moving or static ticker tapes with stock information for custom stock symbols.
Tested up to WP 6.5 (Current: 6.9)
v3.24.6
Current Version v3.24.6
Updated 1 year ago
Last Update on 27 Jun, 2024
Synced 7 hours ago
Last Synced on
Rank
#4,818
-1 this week
Active Installs
2K+
-24.2%
KW Avg Position
46.8
—
No change
Downloads
134.4K
+2 today
Support Resolved
0%
—
No change
Rating
88%
Review 4.4 out of 5
4.4
(21 reviews)
Next Milestone 3K
2K+
3K+
400
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 415 more installs to reach 3K+
Rank Changes
Current
#4,818
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.4
21 reviews
Overall
88%
5
17
(81%)
4
1
(5%)
3
0
(0%)
2
0
(0%)
1
3
(14%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| sotck quote | 1 | — | Tag | 7 hours ago |
| stock ticker | 19 | — | Tag | 7 hours ago |
| trading | 35 | — | Tag | 7 hours ago |
| ticker | 132 | — | Tag | 7 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 3.24.6
- Last Updated
- Jun 27, 2024
- Requires WP
- 4.9+
- Tested Up To
- 6.5
- PHP Version
- 5.6 or higher
- Author
- Aleksandar Urošević
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.4
- Reviews
- 21
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Qi Addons For Elementor
200K+ installs
#253
MW
MW WP Form
200K+ installs
#262
WPFront Scroll Top
200K+ installs
#270
Frequently Asked Questions
Common questions about Stock Ticker
EURGBP;Euro (€) ⇨ British Pound Sterling (£)
<?php echo do_shortcode('[stock_ticker]'); ?>
How to customize quote output?
On Settings page for plugin you can set custom Value template. You can use macro keywords %exch_symbol%, %symbol%, %company%, %price%, %volume%, %change%, %changep% and %ltrade% mixed with HTML tags <span>, <em> and/or <strong>.
Default template is %company% %price% %change% %changep% but you can format it like:
<span style="color:#333">%company%</span> <em>%price%</em> <strong>%change%</strong> %changep%
I set to show `%company%` but symbol is displayed instead
Please note that Alpha Vantage does not provide company name in retrieved feeds. You'll need to set company name in Custom Names field on plugin settings page.
How to resolve error `Unfortunately, we could not get stock quotes this time`?
This can be temporary issue. First try to run Fetch Stock Data Now! on plugin settings page.
If that does not help, next try to increase Fetch Timeout option on general plugin settings and then run Fetch Stock Data Now!.
If you still experiencing issue, please contact us through support forum.
Can I get stock data for my custom code?
Since version 3.1 of Stock Ticker you can get stock data in custom functions. Fore example:
<?php
if ( class_exists( 'Wpau_Stock_Ticker' ) ) {
$stock_data = Wpau_Stock_Ticker::get_stock_from_db( 'AAPL,MSFT' );
var_dump( $stock_data );
}
?>
That will return associated array for requested symbols:
array(2) {
["AAPL"]=>
array(11) {
["symbol"]=>
string(4) "AAPL"
["tz"]=>
string(10) "US/Eastern"
["last_refreshed"]=>
string(19) "2018-09-14 00:00:00"
["last_open"]=>
string(8) "225.7500"
["last_high"]=>
string(8) "226.8400"
["last_low"]=>
string(8) "222.5220"
["last_close"]=>
string(8) "223.8400"
["last_volume"]=>
string(8) "31999289"
["change"]=>
string(7) "-2.5700"
["changep"]=>
string(7) "-1.1351"
["range"]=>
string(19) "222.5220 - 226.8400"
}
["MSFT"]=>
array(11) {
["symbol"]=>
string(4) "MSFT"
["tz"]=>
string(10) "US/Eastern"
["last_refreshed"]=>
string(19) "2018-09-14 00:00:00"
["last_open"]=>
string(8) "113.3600"
["last_high"]=>
string(8) "113.7300"
["last_low"]=>
string(8) "112.4400"
["last_close"]=>
string(8) "113.3700"
["last_volume"]=>
string(8) "19122349"
["change"]=>
string(6) "0.4600"
["changep"]=>
string(6) "0.4074"
["range"]=>
string(19) "112.4400 - 113.7300"
}
}
How to customize quote output?
On Settings page for plugin you can set custom Value template. You can use macro keywords %exch_symbol%, %symbol%, %company%, %price%, %volume%, %change%, %changep% and %ltrade% mixed with HTML tags <span>, <em> and/or <strong>.
Default template is %company% %price% %change% %changep% but you can format it like:
<span style="color:#333">%company%</span> <em>%price%</em> <strong>%change%</strong> %changep%
I set to show `%company%` but symbol is displayed instead
Please note that Alpha Vantage does not provide company name in retrieved feeds. You'll need to set company name in Custom Names field on plugin settings page.
How to resolve error `Unfortunately, we could not get stock quotes this time`?
This can be temporary issue. First try to run Fetch Stock Data Now! on plugin settings page.
If that does not help, next try to increase Fetch Timeout option on general plugin settings and then run Fetch Stock Data Now!.
If you still experiencing issue, please contact us through support forum.
Can I get stock data for my custom code?
Since version 3.1 of Stock Ticker you can get stock data in custom functions. Fore example:
<?php
if ( class_exists( 'Wpau_Stock_Ticker' ) ) {
$stock_data = Wpau_Stock_Ticker::get_stock_from_db( 'AAPL,MSFT' );
var_dump( $stock_data );
}
?>
That will return associated array for requested symbols:
array(2) {
["AAPL"]=>
array(11) {
["symbol"]=>
string(4) "AAPL"
["tz"]=>
string(10) "US/Eastern"
["last_refreshed"]=>
string(19) "2018-09-14 00:00:00"
["last_open"]=>
string(8) "225.7500"
["last_high"]=>
string(8) "226.8400"
["last_low"]=>
string(8) "222.5220"
["last_close"]=>
string(8) "223.8400"
["last_volume"]=>
string(8) "31999289"
["change"]=>
string(7) "-2.5700"
["changep"]=>
string(7) "-1.1351"
["range"]=>
string(19) "222.5220 - 226.8400"
}
["MSFT"]=>
array(11) {
["symbol"]=>
string(4) "MSFT"
["tz"]=>
string(10) "US/Eastern"
["last_refreshed"]=>
string(19) "2018-09-14 00:00:00"
["last_open"]=>
string(8) "113.3600"
["last_high"]=>
string(8) "113.7300"
["last_low"]=>
string(8) "112.4400"
["last_close"]=>
string(8) "113.3700"
["last_volume"]=>
string(8) "19122349"
["change"]=>
string(6) "0.4600"
["changep"]=>
string(6) "0.4074"
["range"]=>
string(19) "112.4400 - 113.7300"
}
}